DEV Community

Cover image for What's new in Node.js version 19?
Rahul Sharma
Rahul Sharma

Posted on • Updated on

What's new in Node.js version 19?

Watch the video

What's new in Node.js 19?

A week ago, Node.js 19 was released Which includes the update of the V8 JavaScript engine to 10.7, and HTTP 1.1 KeepAlive enabled by default.

Important features of the release::

Watch mode

This is an experimental feature. It allows you to run node application with the --watch flag, which will restart the node process when it detects changes in the directory. This feature is useful for development. It is similar to the nodemon.


HTTP 1.1 KeepAlive enabled by default

HTTP 1.1 KeepAlive is enabled by default. This feature is useful for performance. It allows the TCP connection to remain open for multiple requests. This reduces the time required to set up new TCP connections. The default keep-alive duration is 5 seconds.


Stable WebCrypto

Stable WebCrypto is now available in Node.js. It is a standard cryptographic API for the web platform. It provides a secure and performant way to handle cryptographic operations. The WebCrypto API is available globally in Node.js. It can be accessed using crypto.webcrypto global object.


V8 JavaScript engine update to 10.7

The V8 engine is updated to version 10.7, which is part of Chromium 107. This version includes a new feature to the Javascript API.


Also, Node 14 is now in maintenance mode. It will be supported until April 2023. If you are using Node 14, you should upgrade to Node 16. Node 16 is the current LTS version. It will be supported until April 2024.


Thank you for reading 😊

Got any additional questions? please leave a comment.

Must Read If you haven't
3 steps to create custom state management library with React and Context API
How to cancel Javascript API request with AbortController
Getting started with SolidJs – A Beginner's Guide

More content at Dev.to.
Catch me on YouTube, Github, Twitter, LinkedIn, Medium, Stackblitz, Hashnode, HackerNoon, and Blogspot.

Oldest comments (0)