New Features and Fixes May 30 Release of Node.js 8.0 brings for Developers

nodejs 8.0 release.png

The long wait for Node.js Version 8.0 release finally ended on May 30 (12 PM PST), after a delay of almost a month. The new Node.js release brings a lot of new features and fixes for developers in order to significantly improve debugging and developer workflow. Carbon is the codename of the new Node.js release, which removes version 7 from the Node.js current release line. Node.js Version 8.0 will also become the current LTS version from October 2017 and will be maintained till December 31, 2019. Read this blog to gain insight into why this release of Node.js is big for Node.js users.

Important Features of Node.js Version 8.0 Release

TurboFan & Ignition

The introduction of TurboFan and Ignition is the the biggest change Node.js users will see in the latest release. TurboFan is the optimizing compiler and Ignition is V8’s interpreter. Daniel Clifford and the V8 team say, “The combined Ignition and TurboFan pipeline has been in development for almost 3½ years. It represents the culmination of the collective insight that the V8 team has gleaned from measuring real-world JavaScript performance and carefully considering the shortcomings of Full-codegen and Crankshaft. It is a foundation with which we will be able to continue to optimize the entirety of the JavaScript language for years to come.”

Screenshot from 2017-05-31 14:24:37.png

The addition of V8 5.8 in the latest release is another advantage for developers. V8 5.9 is also scheduled to be released in early June.

Note: V8 5.8 is ABI (Application Binary Interface ) compatible to 5.9.

Node.js 8.0 Comes With npm 5

With Node.js 8.0, users will also get access to npm 5.0.0, which will save by default now. In npm 5, package-lock.json will be automatically created unless an npm-shrinkwrap.json exists. Besides, when there is no internet connectivity, there’s no need to retry network requests. Another important change is that npm 5 will install the packages from the latest registry you have switched to. For example, if you generated your package lock against registry A, and switch to Registry B, npm will pick Registry B to install the packages, not Registry A.

Click here to check out highlights of the new npm release

Node.js API (N-API)

The Node Foundation says that Node.js API (N-API) will be added in the new release as an experimental feature. The top reason behind adding N-API in the Node.js 8.0 is to ensure that addons are not influenced by changes in the underlying JavaScript engine. As a result, there will be no hassle of recompilation while running native add-ons with different Node.js versions. Not only this, native addons can also work with Microsoft’s Chakra-Core runtime as well.

The New URL Implementation

With Node.js 8.0, the WHATWG URL implementation is now a fully supported, non-experimental API within Node.js. The advantage of the new URL implementation is that it matches the URL implementation and API available in modern Web Browsers like Chrome, Firefox, Edge, and Safari. So, code consisting of URLs can be easily shared across environments…Read More- New Features and Fixes May 30 Release of Node.js 8.0 brings for Developers