Node.js 5.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Node.js --version 5.0.0
NuGet\Install-Package Node.js -Version 5.0.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="5.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Node.js --version 5.0.0
#r "nuget: Node.js, 5.0.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=5.0.0

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

Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js' package ecosystem, npm, is the largest ecosystem of open source libraries in the world.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (12)

Showing the top 5 NuGet packages that depend on Node.js:

Package Downloads
NoGit

Standalone git command line tool powered by js-git and node.js. Created to get rid of local git dependency in npm and bower, so contains only tiny subset of git features for those tools.

Npm

A package manager for JavaScript.

Bower

Bower is a package manager for the web. It offers a generic, unopinionated solution to the problem of front-end package management, while exposing the package dependency model via an API that can be consumed by a more opinionated build stack. There are no system wide dependencies, no dependencies are shared between different apps, and the dependency tree is flat. Bower runs over Git, and is package-agnostic. A packaged component can be made up of any type of asset, and use any type of transport (e.g., AMD, CommonJS, etc.). -- Bundle Features -- This bundle works without Node.js and Git installations, so you can use js-restore on any build server (including cloud TFS) and don't commit external js files.

Grunt

Grunt is the JavaScript task runner, which main purpose is to automate repetitive tasks like minification, compilation, unit testing, linting, etc. With literally thousands of plugins to choose from, you can use Grunt to automate just about anything with a minimum of effort.

MetroNode

NodeJS Support for Windows 10 Javascript-based Apps

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
5.3.0 1,742,373 12/20/2015
5.2.0 5,374 12/20/2015
5.1.1 2,556 12/20/2015
5.1.0 5,271 12/20/2015
5.0.0 3,088 12/20/2015
4.2.3 5,021 12/20/2015
4.2.2 3,016 12/20/2015
4.2.1 2,626 12/20/2015
4.2.0 2,804 12/20/2015
4.1.2 9,421 12/20/2015
4.1.1 2,785 12/20/2015
4.1.0 2,578 12/20/2015
4.0.0 79,043 9/15/2015
0.12.7 595,562 7/25/2015
0.12.6 2,537 7/25/2015
0.12.5 2,635 7/25/2015
0.12.4 2,520 7/25/2015
0.12.3 2,343 7/25/2015
0.12.2 2,609 7/25/2015
0.12.1 2,607 7/25/2015
0.12.0 97,988 2/15/2015
0.10.36 108,865 2/4/2015
0.10.35 2,506 2/4/2015
0.10.34 2,304 2/4/2015
0.10.33 26,522 10/30/2014
0.10.32 9,877 9/17/2014
0.10.31 15,268 8/30/2014
0.10.30 2,584 8/30/2014
0.10.29 12,593 6/18/2014
0.10.28 623,598 5/16/2014
0.10.27 2,433 5/16/2014
0.10.26.1 220,616 3/18/2014
0.10.26 7,956 2/19/2014
0.10.25 8,902 1/23/2014
0.10.24 11,975 1/6/2014
0.10.23 32,355 12/12/2013
0.10.22 2,532 12/12/2013
0.10.21 79,496 11/7/2013

[buffer]: (Breaking) Removed both 'raw' and 'raws' encoding types from Buffer, these have been deprecated for a long time (Sakthipriyan Vairamani) #2859.

[console]: (Breaking) Values reported by console.time() now have 3 decimals of accuracy added (Michaël Zasso) #3166.

[fs]:
- fs.readFile*(), fs.writeFile*(), and fs.appendFile*() now also accept a file descriptor as their first argument (Johannes Wüller) #3163.
- (Breaking) In fs.readFile(), if an encoding is specified and the internal toString() fails the error is no longer thrown but is passed to the callback (Evan Lucas) #3485.
- (Breaking) In fs.read() (using the fs.read(fd, length, position, encoding, callback) form), if the internal toString() fails the error is no longer thrown but is passed to the callback (Evan Lucas) #3503.

[http]:
- Fixed a bug where pipelined http requests would stall (Fedor Indutny) #3342.
- (Breaking) When parsing HTTP, don't add duplicates of the following headers: Retry-After, ETag, Last-Modified, Server, Age, Expires. This is in addition to the following headers which already block duplicates: Content-Type, Content-Length, User-Agent, Referer, Host, Authorization, Proxy-Authorization, If-Modified-Since, If-Unmodified-Since, From, Location, Max-Forwards (James M Snell) #3090.
- (Breaking) The callback argument to OutgoingMessage#setTimeout() must be a function or a TypeError is thrown (James M Snell) #3090.
- (Breaking) HTTP methods and header names must now conform to the RFC 2616 "token" rule, a list of allowed characters that excludes control characters and a number of separator characters. Specifically, methods and header names must now match /^[a-zA-Z0-9_!#$%&'*+.^`|~-]+$/ or a TypeError will be thrown (James M Snell) #2526.

[node]:
- (Breaking) Deprecated the _linklist module (Rich Trott) #3078.
- (Breaking) Removed require.paths and require.registerExtension(), both had been previously set to throw Error when accessed (Sakthipriyan Vairamani) #2922.

[npm]: Upgraded to version 3.3.6 from 2.14.7, see https://github.com/npm/npm/releases/tag/v3.3.6 for more details. This is a major version bump for npm and it has seen a significant amount of change. Please see the original npm v3.0.0 release notes for a list of major changes (Rebecca Turner) #3310.

[src]: (Breaking) Bumped NODE_MODULE_VERSION to 47 from 46, this is necessary due to the V8 upgrade. Native add-ons will need to be recompiled (Rod Vagg) #3400.

[timers]: Attempt to reuse the timer handle for setTimeout().unref(). This fixes a long-standing known issue where unrefed timers would perviously hold beforeExit open (Fedor Indutny) #3407.

[tls]:
- Added ALPN Support (Shigeki Ohtsu) #2564.
- TLS options can now be passed in an object to createSecurePair() (Коренберг Марк) #2441.
- (Breaking) The default minimum DH key size for tls.connect() is now 1024 bits and a warning is shown when DH key size is less than 2048 bits. This a security consideration to prevent "logjam" attacks. A new minDHSize TLS option can be used to override the default. (Shigeki Ohtsu) #1831.

[util]:
- (Breaking) util.p() was deprecated for years, and has now been removed (Wyatt Preul) #3432.
- (Breaking) util.inherits() can now work with ES6 classes. This is considered a breaking change because of potential subtle side-effects caused by a change from directly reassigning the prototype of the constructor using ctor.prototype = Object.create(superCtor.prototype, { constructor: { ... } }) to using Object.setPrototypeOf(ctor.prototype, superCtor.prototype) (Michaël Zasso) #3455.

[v8]: (Breaking) Upgraded to 4.6.85.25 from 4.5.103.35 (Ali Ijaz Sheikh) #3351.
- Implements the spread operator, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator for further information.
- Implements new.target, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/new.target for further information.

[zlib]: Decompression now throws on truncated input (e.g. unexpected end of file) (Yuval Brik) #2595.