2026.04.10E·90Node.js Native TypeScript Support: Saying Goodbye to ts-node and tsx
A deep dive into Node.js's new experimental native TypeScript execution features, exploring how it works under the hood and why we might finally move away from external bundlers or runners.
Node.jsTypeScriptRuntime
→2026.01.20E·52pnpm: The Faster, Disk-Efficient Package Manager
node_modules over 1GB and 5-minute installs? Switching to pnpm cut both size and speed in half with its clever symlink approach.
pnpmnpmPackage Manager
→2026.01.18E·50Bun: Can It Really Replace Node.js?
npm install took 3 minutes, bun install took 10 seconds. It's fast, but can you actually use it in production?
BunNode.jsRuntime
→2025.12.15E·29Fixing 'Cannot find module' Errors: TSConfig, Exports, and Extensions
Installed the package, but Node still says 'Cannot find module'? Debugging strategies for package.json exports, file extensions, and monorepo linking issues.
TypeScriptNode.jsnpm
→2025.05.15F·105My Server Crashed Every Night: Understanding Stack vs Heap
My Node.js server crashed every midnight with 'Heap Out of Memory'. The culprit? A global variable hoarding data. Through this debugging nightmare, I learned the true difference between Stack and Heap, how V8 Garbage Collection works, and how to prevent memory leaks.
CSMemoryNode.js
→