Breaking
Hot fix All error fixes →

Common Node.js errors · quick reference

All error fixes →
Error What it means / fix Surface Difficulty Status
UnhandledPromise Express.js async error handling that actually works in 2026 Express.js async error handling that actually works in 2026: Express 5 native catching, the express-async-errors patch for legacy apps, typed error classes, and the Sentry integration that survives a bad deploy. Express 4 / 5 medium import 'express-async-errors';
MODULE_NOT_FOUND Fix “Cannot find module” in Node.js (CommonJS, ES modules, TypeScript) Fix Cannot find module in Node.js: CommonJS vs ESM resolution rules, TypeScript path aliases at runtime, file case-sensitivity, monorepo workspace pitfalls, and the diagnostic tree I hand new engineers. Node.js npm TypeScript low rm -rf node_modules && npm ci
EADDRINUSE Fix EADDRINUSE: address already in use in Node.js (Mac, Linux, Windows) Fix EADDRINUSE: address already in use in Node.js on Mac, Linux, and Windows. The kill commands per OS, the TIME_WAIT trap, graceful shutdown, and how to stop it from coming back. Node.js Express Fastify low lsof -ti:3000 | xargs kill -9

Tutorials & how-tos

All tutorials →

Comparisons & benchmarks

All comparisons →
Editorial database design workbench cover comparing Node.js ORM tradeoffs with mapping trays, schema cards, query plan strips, migration tokens, relationship wires, and database hardware

Sequelize vs Prisma vs TypeORM in 2026: the Node.js ORM benchmark and the pick I’d make

I've shipped APIs on all three. Sequelize from 2017 to 2020 on a payments API that's still in production. TypeORM through 2021 on a logistics dashboard, where the migration generator broke twice and burned a sprint each time.…

8.6/10
Editor's pick
Prisma for new TypeScript APIs in 2026. Sequelize only if you have an existing JS codebase you don't want to migrate. TypeORM — retire it from new projects.
By Ethan Laurent · May 9, 2026 · 15 min read

Performance & Architecture

All recipes →

Deploy & DevOps

All deploy guides →

AI integration walkthroughs

All AI guides →