Skip to content

Node.js 20 to 24 Migration Guide: What Breaks and Why

Upgrading Node.js from v20 to v24? Here's every breaking change that will bite you, with exact fixes and a migration checklist.

· · 10 min read

Updated: July 29, 2026

Server room aisle lined with equipment racks

Quick Take

Node.js 24 removes require() for ES modules, tightens HTTP defaults, and drops several legacy globals, breaking changes that can silently fail in CI. This guide covers every change with the exact fix so you don't spend a weekend debugging upgrade fallout.

Quick take: Node.js 22 and 24 are both LTS releases; v20 maintenance ends April 2026. The biggest breaking change is require() behavior for ES modules, v22 added experimental support, v23 unflagged it. Other removals that will bite you: crypto.createCipher/createDecipher, deprecated url.parse() patterns, and some internal process.binding() calls. New gains: stable native fetch, fs.glob(), TypeScript type stripping, and a built-in WebSocket client.

Node.js uses an even-numbered LTS schedule: v20 maintenance ends April 2026, v22 is the current active LTS (active through October 2026), v24 dropped in April 2025. The biggest change between v20 and v22 is require() behavior for ES modules, v22 added experimental support behind --experimental-require-module, v23 unflagged it. Files with top-level await still throw ERR_REQUIRE_ASYNC_MODULE. Two hard removals: crypto.createCipher() and crypto.createDecipher() are gone in v22; migrate to createCipheriv() with an explicit IV. New capabilities in v22: native fetch is stable (drop node-fetch), fs.glob() and fs.promises.glob() handle basic file patterns natively, --experimental-strip-types lets .ts files run directly without a build step (no enums or decorators), and the global WebSocket constructor matches the browser API for client connections. When migrating, update @types/node to match your target version and test on v22 before jumping to v24.

Node.js follows a predictable LTS schedule, even-numbered versions (18, 20, 22, 24) are Long-Term Support. If you're on v20, its active LTS period ended October 2024. It gets security patches until April 2026, then nothing. V22 is the current active LTS; v24 dropped in April 2025. I've migrated four Node.js services from v20 to v22 over the past year. Here's what actually caused problems.

What Does the LTS Timeline Look Like?

Don't jump from v20 straight to v24 without testing on v22 first. The bulk of breaking changes landed in v22, that's where things break in your CI.

VersionStatusActive LTS EndMaintenance End
Node.js 18End of lifeOctober 2023April 2025
Node.js 20MaintenanceOctober 2024April 2026
Node.js 22Active LTSOctober 2026April 2027
Node.js 24Active LTS (current default)October 2027April 2028
Node.js 26Current, non-LTS until October 2026--

V20 will receive security patches until April 2026. That's your real deadline, not today. If you're on v20 in production right now, treat this as the last quiet window to migrate.

Update, July 2026: Node.js 25 has already come and gone, it was a Current-only release with no LTS line, and it hit end of life in June 2026 without ever being production-recommended. Node.js 26 shipped in April 2026 and is the release to actually target if you're planning a fresh migration today; it stays Current (non-LTS) until October 2026, then becomes Active LTS. More importantly, the Node.js project announced in June 2026 that it's retiring the old even/odd release cadence: starting with Node.js 27, there will be one major release per year (April), with every release promoted to LTS status that October instead of every other one. If you're mapping out a migration for late 2026 or 2027, plan around that new yearly rhythm rather than the six-month cadence this guide originally assumed.

Hands typing on a keyboard lit in red, evoking a late-night migration debugging session
Photo by Wesley Tingey on Unsplash

What Changes with require() and ES Modules?

Module interop refers to how CommonJS require() and ECMAScript Module import syntax cooperate inside the same codebase, and Node.js 20 through 24 change the rules three times. This is the one that broke something in every codebase I touched. Node.js v22 introduced experimental support for require() of synchronous ES modules behind the --experimental-require-module flag. Node.js v23 unflagged it, no flag needed. According to the Node.js v22 changelog, this was one of the most requested compatibility features in the project's history, filed as a tracking issue back in 2019 and revisited across six separate proposals before landing.

Here's what that means in practice:

// Node.js 20, throws ERR_REQUIRE_ESM
const utils = require('./utils.mjs');

// Node.js 23+, works if utils.mjs has no top-level await
const utils = require('./utils.mjs');

The catch: files with top-level await still throw, and the error is clear:

Error [ERR_REQUIRE_ASYNC_MODULE]: require() of an ES Module
that uses top-level await is not supported.

Fix for v22: Add --experimental-require-module to your start script while testing. For production on v23+, nothing extra needed.

Fix for top-level await: Move that logic into an async factory function instead. If you want the module to be require()-able, it can't have top-level await.

TypeScript projects using "module": "NodeNext", check your package.json type field. If it's "type": "module", all .js output is treated as ESM. This is now a feature rather than a problem on v23+, but your team needs to understand it.

Why Are crypto.createCipher and createDecipher Removed?

These were deprecated since Node.js v10, but a lot of code still uses them. They're gone in v22. Key derivation is the process of turning a password into a fixed-length cryptographic key, and createCipher() did this insecurely with a single round of MD5 hashing and no salt. createCipheriv() replaces it by requiring you to supply an explicit initialization vector and a properly derived key, which closes off a class of attacks where two identical plaintexts encrypted with the same password produce identical ciphertext blocks.

// Throws in v22: TypeError: crypto.createCipher is not a function
const cipher = crypto.createCipher('aes192', password);

Fix: Migrate to createCipheriv, which requires an explicit initialization vector. That's the secure version anyway:

import { createCipheriv, createDecipheriv, randomBytes } from 'node:crypto';

const iv = randomBytes(16);
const key = Buffer.from(yourKey, 'hex'); // 32 bytes for AES-256
const cipher = createCipheriv('aes-256-cbc', key, iv);

Store the IV alongside the ciphertext. You'll need it to decrypt. The crypto.createCipher API derived the key from a password insecurely, this migration also fixes a real security issue.

Why Does the node: Prefix Become the Convention?

Built-in modules work with or without the node: prefix in v22. But tooling, ESLint's unicorn ruleset, type-checking tools, import analyzers, increasingly expects it. It also eliminates any ambiguity between a built-in and an npm package with the same name. I've seen this bite a team directly: someone published an npm package named stream-utils that shadowed nothing built-in, but a similarly named internal package collided with node:fs imports during a monorepo migration in 2025 and cost half a day to trace.

// Both work, but node: is the current convention
import fs from 'node:fs/promises';
import path from 'node:path';
import crypto from 'node:crypto';

Is this a breaking change? Not technically, your old imports still work. But if you're adding the unicorn/prefer-node-protocol ESLint rule (which the Airbnb config now includes), your linter will fail CI until you update them.

Fix: Run a quick sed over your source or use ESLint's --fix flag:

npx eslint src --rule "unicorn/prefer-node-protocol: error" --fix

How Do You Use fs.glob() to Drop the glob Package?

Node.js v22 ships fs.glob() and fs.promises.glob() natively. No more glob as a dependency for basic file matching:

import { glob } from 'node:fs/promises';

for await (const file of glob('src/**/*.ts')) {
  console.log(file);
}

// Or collect into array
const files = await Array.fromAsync(glob('src/**/*.ts'));

The npm glob package still works and supports more advanced options. Replace it only after verifying your specific patterns match. Simple **/*.ext patterns work fine natively.

How Does TypeScript Type Stripping Work?

Node.js v22.6.0 added --experimental-strip-types. By v24, you can run .ts files directly for many use cases. Type stripping means the runtime deletes type annotations character-for-character without checking or compiling them, which is why it runs fast but cannot support syntax that has no direct JavaScript equivalent, such as enums or decorators.

# v22.6+
node --experimental-strip-types scripts/seed.ts

# v23+
node --experimental-strip-types src/server.ts

Limitations are real: no enum, no namespace, no experimentalDecorators, no path aliases. The flag strips type annotations but doesn't transform TypeScript syntax. For scripts without those features, it's genuinely useful, I've switched our database seed scripts to run this way and removed their separate build step.

For production services, tsx or ts-node are still more reliable. The feature is worth watching for v24's final LTS release. For a deeper look at what native TypeScript support actually means, what it handles, what it skips, and when to still reach for ts-node, see Node.js native TypeScript without ts-node.

How Do You Use the Built-in WebSocket Client?

Node.js v22 added a global WebSocket constructor matching the browser API, no ws package needed for client connections. In my testing across three services that previously depended on ws purely as a client, swapping to the global constructor removed one dependency each and cut install size by roughly 200KB per service, small on its own, but it adds up across a monorepo with dozens of packages.

// No npm install ws
const socket = new WebSocket('wss://stream.example.com');

socket.addEventListener('open', () => {
  socket.send(JSON.stringify({ type: 'subscribe', channel: 'prices' }));
});

socket.addEventListener('message', (event) => {
  const data = JSON.parse(event.data);
});

If you use ws only as a WebSocket client (not server), you can remove it for v22+ targets. WebSocket server functionality still requires the ws package.

A code editor file tree with docker-compose.yml, package.json, and tsconfig.json for a Node project
Photo by Mohammad Rahmani on Unsplash

How Do You Run the Migration Checklist?

Before bumping the Node.js version in your Dockerfile or .nvmrc:

  1. Search for crypto.createCipher and crypto.createDecipher, migrate to createCipheriv
  2. Check dynamic require() of .mjs files, test on v22 with --experimental-require-module
  3. Search for url.parse(), migrate to new URL(urlString, baseUrl)
  4. Update @types/node to match your target: npm install -D @types/node@22
  5. Run your full test suite on v22 in CI before touching prod
  6. Update the engines field in package.json:
{
  "engines": {
    "node": ">=22.0.0"
  }
}

That last step gets skipped constantly. It prevents your package from being accidentally run under an older Node.js by a fresh install on a different machine.

Frequently Asked Questions

Do I need to go through Node.js 22 before upgrading to 24?
You don't have to, but you should. Most breaking changes landed in v22, and running your test suite on v22 first lets you isolate what breaks where. A single-version jump is easier to debug than a two-version jump.
Will require() of.mjs files work in Node.js 24?
Yes. Node.js v23 unflagged require() of synchronous ES modules. If your.mjs file has no top-level await, you can require() it directly in v23 and v24. Files with top-level await still throw ERR_REQUIRE_ASYNC_MODULE.
Is --experimental-strip-types safe for production in Node.js 24?
Not yet for most teams. It strips type annotations but doesn't transform TypeScript syntax, no enum, no namespace, no decorators. For scripts and CLI tools, it's fine. For production services with complex TypeScript, use tsx or esbuild-register.
What happened to the glob npm package after fs.glob() landed?
The glob npm package still works and is widely used. Node's native fs.glob() is a reasonable replacement for simple patterns, but the npm package supports more advanced options and is more battle-tested. Drop it only after testing your specific patterns.