🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now β†’
Menu

Categories

Node.js 24 Released: Native TypeScript Execution and Permission Model GA

Node.js 24 Released: Native TypeScript Execution and Permission Model GA

The Node.js team has officially released version 24, the latest major release that includes several groundbreaking features for JavaScript server-side development.

Native TypeScript Execution

Node.js 24 can now run .ts files directly without any transpilation step. The built-in TypeScript support handles type stripping at load time, meaning you can run node app.ts with zero configuration. This eliminates the need for ts-node or tsx in many development workflows.

Permission Model (GA)

The experimental permission model introduced in Node.js 20 is now stable. It allows restricting file system access, network connections, child processes, and worker threads using command-line flags:

  • --allow-fs-read β€” Restrict file system read access to specific paths
  • --allow-fs-write β€” Restrict file system write access
  • --allow-child-process β€” Control child process spawning
  • --allow-worker β€” Control Worker thread creation

V8 13.0 Engine

The updated V8 engine brings Float16Array support, explicit resource management (using declarations), and a 15% improvement in async/await performance.

Developers should note that Node.js 22 becomes the active LTS release, while Node.js 18 reaches end-of-life in April 2026.

Share this article:
Dargslan Editorial Team (Dargslan)
About the Author

Dargslan Editorial Team (Dargslan)

Collective of Software Developers, System Administrators, DevOps Engineers, and IT Authors

Dargslan is an independent technology publishing collective formed by experienced software developers, system administrators, and IT specialists.

The Dargslan editorial team works collaboratively to create practical, hands-on technology books focused on real-world use cases. Each publication is developed, reviewed, and...

Programming Languages Linux Administration Web Development Cybersecurity Networking

Stay Updated

Subscribe to our newsletter for the latest tutorials, tips, and exclusive offers.