Software update: Node.js 10.12.0

Spread the love

Node.js is open-source and platform-independent and is focused on the development of server-side web applications. Those applications are written in JavaScript and executed within the Node.js runtime on the server. It offers an event-driven environment where non-blocking I / O has been an important starting point. For more information we refer to this page . The development team has released version 10.12.0 in the current branch. The list of changes is as follows:

Node v10.12.0 (Current) – Notable changes

  • assert
    • The diff output is now a tiny bit improved by sorting object properties when inspecting the values ​​that are compared with each other. # 22788
  • cli
    • The options parser now normalizes _to – in all multi-word command-line flags, e.g. –no_warnings has the same effect axis –no-warnings. # 23020
    • Added bash completion for the node binary. To generate a bash completion script, run node –completion-bash. The output can be saved to a file that can be sourced to enable completion. # 20713
  • crypto
    • Added support for PEM-level encryption. # 23151
    • Added an API asymmetric key pair generation. The new methods of crypto.generateKeyPair and crypto.generateKeyPairSync can be used to generate public and private key pairs. The API supports RSA, DSA and EC and a variety of key encodings (both PEM and DER). # 22660
  • fs
    • Added a recursive option to fs.mkdir and fs.mkdirSync. If this option is set to true, non-existing parent folders will be automatically created. # 21875
  • http2
    • Added a ‘ping’ event to Http2Session that is emitted whenever a non-ack PING is received. # 23009
    • Added support for the ORIGIN frame. # 22956
    • Updated nghttp2 to 1.34.0. This adds RFC 8441 extended connect protocol to support use of WebSockets over HTTP / 2. # 23284
  • module
    • Added module.createRequireFromPath (filename). This new method can be used to create a custom function that will resolve modules relative to the filename path. # 19360
  • process
    • Added a ‘multipleResolves’ process event that is emitted whenever a Promise is attempted to be resolved multiple times, for example if the resolve is called a Promise executor. # 22218
  • URL
    • Added url.fileURLToPath (url) and url.pathToFileURL (path). These methods can be converted between files: URLs and absolute paths. # 22506
  • util
    • Added the sorted option to util.inspect (). If set to true, all properties of an object and Set and Map entries will be sorted in the returned string. If set to function, it is used as a compare function. # 22788
    • The util.inspect.custom symbol is now defined in the global symbol registry as Symbol.for (‘nodejs.util.inspect.custom’). # 20857
    • Added support for BigInt numbers in util. format (). # 22097
  • V8 API
    • A number of V8 C ++ APIs have been marked as deprecated since they have been removed in the upstream repository. Replacement APIs are added where necessary. # 23159
  • Windows
    • The Windows msi installer now provides an option to install the modules required to build native modules. # 22645
  • Workers
    • Debugging support for Workers using the DevTools protocol has been implemented. # 21364
    • The public inspector module is now enabled in Workers. # 22769
Version number 10.12.0
Release status Final
Operating systems Windows 7, Linux, BSD, macOS, Solaris, UNIX, Windows Server 2008, Windows Server 2012, Windows 8, Windows 10, Windows Server 2016
Website Node.js
Download https://nodejs.org/dist/v10.12.0/
License type Conditions (GNU / BSD / etc.)
You might also like