Node.js
5.2.0
See the version list below for details.
dotnet add package Node.js --version 5.2.0
NuGet\Install-Package Node.js -Version 5.2.0
<PackageReference Include="Node.js" Version="5.2.0" />
paket add Node.js --version 5.2.0
#r "nuget: Node.js, 5.2.0"
// Install Node.js as a Cake Addin #addin nuget:?package=Node.js&version=5.2.0 // Install Node.js as a Cake Tool #tool nuget:?package=Node.js&version=5.2.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.
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,872,144 | 12/20/2015 |
5.2.0 | 5,984 | 12/20/2015 |
5.1.1 | 2,701 | 12/20/2015 |
5.1.0 | 6,969 | 12/20/2015 |
5.0.0 | 3,245 | 12/20/2015 |
4.2.3 | 5,263 | 12/20/2015 |
4.2.2 | 3,150 | 12/20/2015 |
4.2.1 | 2,756 | 12/20/2015 |
4.2.0 | 2,937 | 12/20/2015 |
4.1.2 | 11,487 | 12/20/2015 |
4.1.1 | 2,936 | 12/20/2015 |
4.1.0 | 2,705 | 12/20/2015 |
4.0.0 | 80,881 | 9/15/2015 |
0.12.7 | 692,831 | 7/25/2015 |
0.12.6 | 2,661 | 7/25/2015 |
0.12.5 | 2,757 | 7/25/2015 |
0.12.4 | 2,651 | 7/25/2015 |
0.12.3 | 2,472 | 7/25/2015 |
0.12.2 | 2,733 | 7/25/2015 |
0.12.1 | 2,746 | 7/25/2015 |
0.12.0 | 110,925 | 2/15/2015 |
0.10.36 | 127,724 | 2/4/2015 |
0.10.35 | 2,638 | 2/4/2015 |
0.10.34 | 2,432 | 2/4/2015 |
0.10.33 | 28,055 | 10/30/2014 |
0.10.32 | 10,119 | 9/17/2014 |
0.10.31 | 15,763 | 8/30/2014 |
0.10.30 | 2,703 | 8/30/2014 |
0.10.29 | 12,975 | 6/18/2014 |
0.10.28 | 654,558 | 5/16/2014 |
0.10.27 | 2,556 | 5/16/2014 |
0.10.26.1 | 236,958 | 3/18/2014 |
0.10.26 | 8,096 | 2/19/2014 |
0.10.25 | 9,250 | 1/23/2014 |
0.10.24 | 12,487 | 1/6/2014 |
0.10.23 | 35,229 | 12/12/2013 |
0.10.22 | 2,664 | 12/12/2013 |
0.10.21 | 83,196 | 11/7/2013 |
[build]:
- Add support for Intel's VTune JIT profiling when compiled with --enable-vtune-profiling. For more information about VTune, see https://software.intel.com/en-us/node/544211. (Chunyang Dai) #3785.
- Properly enable V8 snapshots by default. Due to a configuration error, snapshots have been kept off by default when the intention is for the feature to be enabled. (Fedor Indutny) #3962.
[crypto]:
- Simplify use of ECDH (Elliptic Curve Diffie-Hellman) objects (created via crypto.createECDH(curve_name)) with private keys that are not dynamically generated via generateKeys(). The public key is now computed when explicitly setting a private key. Added validity checks to reduce the possibility of computing weak or invalid shared secrets. Also, deprecated the setPublicKey() method for ECDH objects as its usage is unnecessary and can lead to inconsistent state. (Michael Ruddy) #3511.
- Update root certificates from the current list stored maintained by Mozilla NSS. (Ben Noordhuis) #3951.
- Multiple CA certificates can now be passed with the ca option to TLS methods as an array of strings or in a single new-line separated string. (Ben Noordhuis) #4099
[tools]: Include a tick processor in core, exposed via the --prof-process command-line argument which can be used to process V8 profiling output files generated when using the --prof command-line argument. (Matt Loring) #4021.