-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
content(userland-migration): make up to date
#8053
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 11 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
5d7b7d7
content(`userland-migration`): make up to date
AugustinMauroy d398f90
Update introduction.md
AugustinMauroy 154245b
update
AugustinMauroy 010996b
Update navigation.json
AugustinMauroy 99f368e
Update
AugustinMauroy 17bcae9
use correct casing
AugustinMauroy 81ee06b
update
AugustinMauroy 6d86268
update after meeting
AugustinMauroy a009faf
fix link
AugustinMauroy c7d66ab
feat(mdx): add alertBox
AugustinMauroy 464acd9
fix
AugustinMauroy 9310143
update
AugustinMauroy ddc4cdb
update + improve
AugustinMauroy 2832256
Merge branch 'main' into content(`userland-migration`)
AugustinMauroy 608dae0
make date up to date
AugustinMauroy 42af1f4
Delete next.mdx.use.mjs
AugustinMauroy 23e7e1d
apply sugession
AugustinMauroy 8b4b976
use sha for image
AugustinMauroy 885d7d9
use alertBox as info
AugustinMauroy 89ef3ba
Merge branch 'main' into content(`userland-migration`)
AugustinMauroy fe3f9d5
update
AugustinMauroy dd7c13e
bump date
AugustinMauroy 38db89a
change date to order by version
AugustinMauroy b1a5c4a
i'm dum
AugustinMauroy 1ea9a92
Update apps/site/pages/en/blog/migrations/v22-to-v24.mdx
AugustinMauroy daf646a
Update navigation.json
AugustinMauroy 1923ff2
fix grammar
AugustinMauroy 47f8b45
Merge branch 'main' into content(`userland-migration`)
AugustinMauroy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| 'use strict'; | ||
|
|
||
| import BadgeGroup from '@node-core/ui-components/Common/BadgeGroup'; | ||
|
|
||
| import Button from './components/Common/Button'; | ||
| import LinkWithArrow from './components/Common/LinkWithArrow'; | ||
| import EOLAlertBox from './components/EOL/EOLAlert'; | ||
| import EOLReleaseTable from './components/EOL/EOLReleaseTable'; | ||
| import Link from './components/Link'; | ||
| import UpcomingMeetings from './components/MDX/Calendar/UpcomingMeetings'; | ||
| import PreviousReleasesTable from './components/Releases/PreviousReleasesTable'; | ||
| import WithBadgeGroup from './components/withBadgeGroup'; | ||
| import WithBanner from './components/withBanner'; | ||
| import WithNodeRelease from './components/withNodeRelease'; | ||
|
|
||
| /** | ||
| * A full list of React Components that we want to pass through to MDX | ||
| * | ||
| * @satisfies {import('mdx/types').MDXComponents} | ||
| */ | ||
| export const mdxComponents = { | ||
| PreviousReleasesTable, | ||
| // HOC for getting Node.js Release Metadata | ||
| WithNodeRelease, | ||
| // HOC for providing Banner Data | ||
| WithBanner, | ||
| // HOC for providing Badge Data | ||
| WithBadgeGroup, | ||
| // Standalone Badge Group | ||
| BadgeGroup, | ||
| // Renders an container for Upcoming Node.js Meetings | ||
| UpcomingMeetings, | ||
| // Renders an EOL alert | ||
| EOLAlertBox, | ||
| // Renders the EOL Table | ||
| EOLReleaseTable, | ||
| // Renders a Button Component for `button` tags | ||
| Button, | ||
| // Regular links (without arrow) | ||
| Link, | ||
| // Links with External Arrow | ||
| LinkWithArrow, | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| --- | ||
| date: '2025-09-26T12:00:00.000Z' | ||
| category: migrations | ||
| title: Node.js v12 to v14 | ||
| layout: blog-post | ||
| author: AugustinMauroy | ||
| --- | ||
|
|
||
| # Node.js v12 to v14 | ||
|
|
||
| <AlertBox level="warning" title="!"> | ||
| This article cover a part of the migration from Node.js v12 to v14. The | ||
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| userland migrations team is working on more codemods to help you with the | ||
| migration. | ||
| </AlertBox> | ||
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| This page provides a list of codemods to help you migrate your code from Node.js v12 to v14. | ||
|
|
||
| ## `util-print-to-console-log` | ||
avivkeller marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| This recipe transforms the usage of log functions from util, `print`, `puts`, `debug`, `error` to use `console.log()` or `console.error()`. | ||
|
|
||
| So this codemod handle [DEP0026](https://nodejs.org/api/deprecations.html#DEP0026), [DEP0027](https://nodejs.org/api/deprecations.html#DEP0027), [DEP0028](https://nodejs.org/api/deprecations.html#DEP0028) and [DEP0029](https://nodejs.org/api/deprecations.html#DEP0029). | ||
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ```bash | ||
| npx codemod run @nodejs/create-require-from-path | ||
| ``` | ||
|
|
||
| ### Example: | ||
|
|
||
| ```js displayName="Before" | ||
| const util = require('node:util'); | ||
|
|
||
| util.print('Hello world'); | ||
| util.puts('Hello world'); | ||
| util.debug('Hello world'); | ||
| util.error('Hello world'); | ||
| ``` | ||
|
|
||
| ```js displayName="After" | ||
| console.log('Hello world'); | ||
| console.log('Hello world'); | ||
| console.error('Hello world'); | ||
| console.error('Hello world'); | ||
| ``` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,130 @@ | ||
| --- | ||
| date: '2025-09-26T12:00:00.000Z' | ||
| category: migrations | ||
| title: Node.js v14 to v16 | ||
| layout: blog-post | ||
| author: AugustinMauroy | ||
| --- | ||
|
|
||
| # Node.js v14 to v16 | ||
|
|
||
| <AlertBox | ||
| level="warning" | ||
| title="This article cover a part of the migration from Node.js v14 to v16. The userland migrations team is working on more codemods to help you with the migration." | ||
| /> | ||
|
|
||
| This page provides a list of codemods to help you migrate your code from Node.js v14 to v16. | ||
|
|
||
| ## `create-require-from-path` | ||
|
|
||
| In Node.js v16, the `createRequire` function was introduced to allow you to create a `require` function that can be used in ESM modules. This codemod will help you replace the old `createRequireFromPath` function with the new `createRequire` function. | ||
|
|
||
| So this codemod handle [DEP0130](https://nodejs.org/api/deprecations.html#DEP0130). | ||
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ```bash | ||
| npx codemod run @nodejs/create-require-from-path | ||
| ``` | ||
|
|
||
| ### Example: | ||
|
|
||
| ```js displayName="Before" | ||
| import { createRequireFromPath } from 'node:module'; | ||
|
|
||
| // Using createRequireFromPath | ||
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| const requireFromPath = createRequireFromPath('/path/to/module'); | ||
| const myModule = requireFromPath('./myModule.cjs'); | ||
| ``` | ||
|
|
||
| ```js displayName="After" | ||
| import { createRequire } from 'node:module'; | ||
|
|
||
| // Using createRequire with a specific path | ||
| const require = createRequire('/path/to/module'); | ||
| const myModule = require('./myModule.cjs'); | ||
| ``` | ||
|
|
||
| ## `process-main-module` | ||
|
|
||
| The `process.mainModule` property was deprecated in favor of `require.main`. This codemod will help you replace the old `process.mainModule` usage with the new `require.main` usage. | ||
|
|
||
| So the codemod handle [DEP0138](https://nodejs.org/api/deprecations.html#DEP0138). | ||
AugustinMauroy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| ```bash | ||
| npx codemod run @nodejs/process-main-module | ||
| ``` | ||
|
|
||
| ### Example: | ||
|
|
||
| ```js displayName="Before" | ||
| if (process.mainModule === 'mod.js') { | ||
| // cli thing | ||
| } else { | ||
| // module thing | ||
| } | ||
| ``` | ||
|
|
||
| ```js displayName="After" | ||
| if (require.main === 'mod.js') { | ||
| // cli thing | ||
| } else { | ||
| // module thing | ||
| } | ||
| ``` | ||
|
|
||
| ## `rmdir` | ||
|
|
||
| The `fs.rmdir` function was deprecated in favor of `fs.rm` with the `{ recursive: true }` option. This codemod will help you replace the old `fs.rmdir` function with the new `fs.rm` function. | ||
|
|
||
| so this codemod handle [DEP0147](https://nodejs.org/api/deprecations.html#DEP0147). | ||
|
|
||
| ```bash | ||
| npx codemod run @nodejs/rmdir | ||
| ``` | ||
|
|
||
| ### Example: | ||
|
|
||
| ```js displayName="Before" | ||
| // Using fs.rmdir with the recursive option | ||
| fs.rmdir(path, { recursive: true }, callback); | ||
|
|
||
| // Using fs.rmdirSync with the recursive option | ||
| fs.rmdirSync(path, { recursive: true }); | ||
|
|
||
| // Using fs.promises.rmdir with the recursive option | ||
| fs.promises.rmdir(path, { recursive: true }); | ||
| ``` | ||
|
|
||
| ```js displayName="After" | ||
| // Using fs.rm with recursive and force options | ||
| fs.rm(path, { recursive: true, force: true }, callback); | ||
|
|
||
| // Using fs.rmSync with recursive and force options | ||
| fs.rmSync(path, { recursive: true, force: true }); | ||
|
|
||
| // Using fs.promises.rm with recursive and force options | ||
| fs.promises.rm(path, { recursive: true, force: true }); | ||
| ``` | ||
|
|
||
| ## `tmpDir-to-tmpdir` | ||
|
|
||
| The `tmpDir` function was renamed to `tmpdir` in Node.js v16. This codemod will help you replace all instances of `tmpDir` with `tmpdir`. | ||
|
|
||
| So the codemod handles [DEP0022](https://nodejs.org/docs/latest/api/deprecations.html#dep0022-ostmpdir). | ||
|
|
||
| ```bash | ||
| npx codemod run @nodejs/tmpDir-to-tmpdir | ||
| ``` | ||
|
|
||
| ### Example: | ||
|
|
||
| ```js displayName="Before" | ||
| import { tmpDir } from 'node:os'; | ||
|
|
||
| const foo = tmpDir(); | ||
| ``` | ||
|
|
||
| ```js displayName="After" | ||
| import { tmpdir } from 'node:os'; | ||
|
|
||
| const foo = tmpdir(); | ||
| ``` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| --- | ||
| date: '2025-09-26T12:00:00.000Z' | ||
| category: migrations | ||
| title: Node.js v20 to v22 | ||
| layout: blog-post | ||
| author: AugustinMauroy | ||
| --- | ||
|
|
||
| # Node.js v20 to v22 | ||
|
|
||
| <AlertBox level="warning" title="!"> | ||
| This article cover a part of the migration from Node.js v20 to v22. The | ||
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| userland migrations team is working on more codemods to help you with the | ||
| migration. | ||
| </AlertBox> | ||
|
|
||
| This page provides a list of codemods to help you migrate your code from Node.js v20 to v22. | ||
|
|
||
| ## `import-assertions-to-attributes` | ||
|
|
||
| During the process of TC39 standardization, the `import assert` feature was introduced to allow importing [JSON modules](https://tc39.es/proposal-json-modules/) but during the during the transition to stage 4, the `assert` keyword was removed and replaced with an `with` attribute on the `import` statement. | ||
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| So in [node.js v22](https://nodejs.org/fr/blog/release/v22.0.0#other-notable-changes), the `import assert` feature was removed and you need to use the `with` attribute instead. | ||
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Also note that the `with` keyword as been introduce in [node.js v18.20](https://nodejs.org/fr/blog/release/v18.20.0#added-support-for-import-attributes) but it was not mandatory until v22. | ||
AugustinMauroy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| ```bash | ||
| npx codemod run @nodejs/import-assertions-to-attributes | ||
| ``` | ||
|
|
||
| ### Example: | ||
|
|
||
| ```js displayName="Before" | ||
| import jsonData from './data.json' assert { type: 'json' }; | ||
| ``` | ||
|
|
||
| ```js displayName="After" | ||
| import jsonData from './data.json' with { type: 'json' }; | ||
| ``` | ||
richardlau marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| --- | ||
avivkeller marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| date: '2025-09-26T12:00:00.000Z' | ||
| category: migrations | ||
| title: Node.js v22 to v24 | ||
| layout: blog-post | ||
| author: AugustinMauroy | ||
| --- | ||
|
|
||
| # Node.js v22 to v24 | ||
|
|
||
| <AlertBox level="warning" title="!"> | ||
| This article cover a part of the migration from Node.js v22 to v24. The | ||
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| userland migrations team is working on more codemods to help you with the | ||
| migration. | ||
| </AlertBox> | ||
|
|
||
| This page provides a list of codemods to help you migrate your code from Node.js v22 to v24. | ||
|
|
||
| ## `fs-access-mode-constants` | ||
|
|
||
| In Node.js 24, the `fs` module introduced a runtime deprecation for `F_OK`, `R_OK`, `W_OK`, and `X_OK` getters exposed directly on `node:fs`. Get them from `fs.constants` or `fs.promises.constants` instead. | ||
|
|
||
| So this codemod handle [DEP0176](https://nodejs.org/api/deprecations.html#DEP0176). | ||
AugustinMauroy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ```js displayName="Before" | ||
| const fs = require('node:fs'); | ||
|
|
||
| fs.access('/path/to/file', fs.F_OK, callback); | ||
| fs.access('/path/to/file', fs.R_OK | fs.W_OK, callback); | ||
| ``` | ||
|
|
||
| ```js displayName="After" | ||
| const fs = require('node:fs'); | ||
|
|
||
| fs.access('/path/to/file', fs.constants.F_OK, callback); | ||
| fs.access('/path/to/file', fs.constants.R_OK | fs.constants.W_OK, callback); | ||
| ``` | ||
|
|
||
| ## `util-log-to-console-log` | ||
|
|
||
| In Node.js v23, the `util.log` function was deprecated in favor of using `console.log` directly. Because it's an unmaintained legacy API that was exposed to user land by accident | ||
|
|
||
| So this codemod handle [DEP0059](https://nodejs.org/api/deprecations.html#DEP0059). | ||
|
|
||
| ### Example: | ||
|
|
||
| ```js displayName="Before" | ||
| const util = require('node:util'); | ||
|
|
||
| util.log('Hello world'); | ||
| ``` | ||
|
|
||
| ```js displayName="After" | ||
| console.log(new Date().toLocaleString(), 'Hello world'); | ||
| ``` | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.