Node.js 0.12.0

Node.js 0.12.0

Node.js is a server-side JavaScript environment that uses an asynchronous event-driven model.

Installation overview

Node.js cmd is installed into .bin dir in your project. Node.js itself is deployed by NuGet, so there is no need to install it locally on dev machines or build servers.

If you're using NuGet restore, it's safe to ignore NuGet "packages" dir in Git (or in other VCS), to reduce the size of repository.

Automation

Use ".bin\node" command to run Node.js in your build scripts. For example, here is a simple MsBuild target to minify your scripts using Require.js optimizer:

Daily usage

For your convenience, ".bin" is added to the PATH environment variable. You can call "node" directly from your project root dir.

For example, if you installed Node.js to "MySite.Web" project of "MySite" solution, you can run it directly in the command prompt from the project dir:

D:\Projects\MySite\MySite.Web> node Scripts\server.js

Note: add ".bin" to the PATH manually for other developers in your team. Note: if PATH was changed, restart your command prompt to refresh environment variables.

Docs

Full Node.js documentation is available at http://nodejs.org/api/


© 2014 Joyent, Inc.

Showing the top 20 packages that depend on Node.js.

Packages Downloads
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.).
23
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.
20
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.
21
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.
22
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.
46
jsreport.Embedded
Installs jsreport server into solution and allows to run it in parallel with .net process.
21
jsreport.Embedded
Installs jsreport server into solution and allows to run it in parallel with .net process.
26
jsreport.Embedded
Installs jsreport server into solution and allows to run it in parallel with .net process.
33
jsreport.Embedded
Installs jsreport server into solution and allows to run it in parallel with .net process.
34
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.
23
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.
31
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.
43
Npm
A package manager for JavaScript.
29
Npm
A package manager for JavaScript.
45
Npm
A package manager for node.js.
25
Npm
A package manager for node.js.
27
Npm
A package manager for node.js.
29

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.

This package has no dependencies.

Version Downloads Last updated
5.3.0 22 02/10/2020
5.2.0 17 02/14/2024
5.1.1 18 02/14/2024
5.1.0 19 02/14/2024
5.0.0 22 02/14/2024
4.2.3 19 02/14/2024
4.2.2 21 02/14/2024
4.2.1 17 02/14/2024
4.2.0 21 02/14/2024
4.1.2 21 02/14/2024
4.1.1 17 02/14/2024
4.1.0 17 02/14/2024
4.0.0 20 02/10/2020
0.12.7 19 02/14/2024
0.12.6 19 02/14/2024
0.12.5 20 02/14/2024
0.12.4 20 02/14/2024
0.12.3 19 02/14/2024
0.12.2 17 02/14/2024
0.12.1 17 02/14/2024
0.12.0 21 02/10/2020
0.10.36 15 02/14/2024
0.10.35 19 02/14/2024
0.10.34 16 02/14/2024
0.10.33 17 02/14/2024
0.10.32 18 02/14/2024
0.10.31 16 02/14/2024
0.10.30 17 02/14/2024
0.10.29 17 02/14/2024
0.10.28 17 02/10/2020
0.10.27 15 02/14/2024
0.10.26.1 19 02/14/2024
0.10.26 18 02/14/2024
0.10.25 18 02/14/2024
0.10.24 15 02/14/2024
0.10.23 18 02/14/2024
0.10.22 18 02/14/2024
0.10.21 19 02/14/2024