Node.js 0.12.0

dotnet add package Node.js --version 0.12.0
NuGet\Install-Package Node.js -Version 0.12.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Node.js" Version="0.12.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Node.js --version 0.12.0
#r "nuget: Node.js, 0.12.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Node.js as a Cake Addin
#addin nuget:?package=Node.js&version=0.12.0

// Install Node.js as a Cake Tool
#tool nuget:?package=Node.js&version=0.12.0

Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Node.js:

Repository Stars
sq/JSIL
CIL to Javascript Compiler
microsoft/mattercenter
Microsoft’s Corporate, External, and Legal Affairs (CELA) group, in partnership with the Office extensibility team, developed Matter Center for Office 365 -- a document management and collaboration solution built using the Office app development model, Azure and Sharepoint.
Version Downloads Last updated
0.12.0 8,021 2/15/2015
0.10.36 2,638 2/4/2015
0.10.35 69 2/4/2015
0.10.34 61 2/4/2015
0.10.33 9,228 10/30/2014
0.10.32 2,607 9/17/2014
0.10.31 2,767 8/30/2014
0.10.30 81 8/30/2014
0.10.29 5,490 6/18/2014
0.10.28 14,880 5/16/2014
0.10.27 65 5/16/2014
0.10.26.1 17,219 3/18/2014
0.10.26 2,142 2/19/2014
0.10.25 331 1/23/2014
0.10.24 95 1/6/2014
0.10.23 620 12/12/2013
0.10.22 60 12/12/2013
0.10.21 11,442 11/7/2013

Following are some highlights of v0.12 release:

* Streams 3
 - The Streams implementation now works the way you thought it already should, without introducing any changes to the API. Basically this means no more getting stuck in "old mode", there are only streams that are flowing or not.
 - Streams now support the use of cork and uncork mechanisms to prevent flushing writes out to the system if an application is going to be performing many writes in a row. There is an implicit uncork performed when you end a writable stream.

* HTTP
 - maxSockets are no longer limited to 5. The default is now set to Infinity with the developer and the operating system given control over how many simultaneous connections an application can keep open to a given host.
 - Proper KeepAlive support means that sockets will stay open until they timeout at the configured time, are closed by the remote side, or the process exits. Developer's no longer have to make sure requests have been pipelined to keep the socket open, or use an alternative module to get that support.
 - Developers can also now explicitly flushHeaders to ensure time to first byte is low and proxied connections are held open.

* Cluster
 - Now has two modes of operation, the new default is a round robin distribution mechanism where the master accepts new connections and distributes them to your workers. If you want you can still opt back into the old method where your workers are responsible for acception connections.

* TLS
 - We have the new TLSWrap mechanism under the hood, this eliminates quite a few of the hops back and forth between JavaScript and our C++ implementations.
 - Added APIs for asynchronous SNI callbacks, OCSP stapling, and storage events.

* Buffer
 - We use a more accurate mechanism for allocating memory for buffers now, which means you'll see less overhead and impact from holding onto to small slices of Buffers. This reduces the amount of memory pressure on the system, which means GC runs are quicker, which means Node.js is on CPU less, and thus lower latency for your applications.

* child_process
 - spawnSync/execSync have been added to facilitate synchronous child processes, warning your node process won't make forward progress while waiting for the child to exit, caveat emptor!

* Crypto
 - Added APIs for loading custom engines for use with compiled in OpenSSL.
 - More APIs support supplying the pass phrases.
 - Added APIs for RSA public/private key encryption/decryption.

* VM
 - The module is now based on the Contextify module, which shares values from the sandbox to avoid missing changes inside the execution from appearing in the parent context.

* Initial support for ECMAScript Internationalization API 1.0 (ECMA-402)
 - By default, Node.js v0.12.0 binaries are shipped with ECMA-402 support, but only for the English language. In other words, the ECMA-402 API is working as you would expect, but only data for the English language is included. You can find more info on how to include more languages in the Wiki.