0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-21 21:19:50 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
2014-08-27 00:18:55 +04:00
benchmark
deps deps: enable ARM assembly for OpenSSL 2014-08-27 00:18:55 +04:00
doc doc: document arguments for 'error' event on a stream 2014-08-07 12:19:33 -07:00
lib fs: fix fs.readFileSync fd leak when get RangeError 2014-08-07 11:27:12 -07:00
src Now working on 0.10.32 2014-08-19 18:12:30 -04:00
test tests: fix child-process-fork-dgram on SmartOS. 2014-08-07 16:06:59 -07:00
tools Now working on 0.10.31 2014-07-31 11:12:08 -07:00
.gitattributes
.gitignore timers: backport f8193ab 2014-07-31 08:53:24 -07:00
.mailmap
.travis.yml
AUTHORS 2014.08.19, Version 0.10.31 (Stable) 2014-08-19 11:19:52 -04:00
BSDmakefile
ChangeLog 2014.08.19, Version 0.10.31 (Stable) 2014-08-19 11:19:52 -04:00
common.gypi gyp: do not let v8dbg_ slip away on osx 2014-07-17 15:16:29 +04:00
configure
CONTRIBUTING.md
LICENSE
Makefile timers: backport f8193ab 2014-07-31 08:53:24 -07:00
node.gyp gyp: preserve v8dbg syms on freebsd too 2014-08-18 17:58:36 +04:00
README.md
vcbuild.bat

Evented I/O for V8 javascript. Build Status

To build:

Prerequisites (Unix only):

* GCC 4.2 or newer
* Python 2.6 or 2.7
* GNU Make 3.81 or newer
* libexecinfo (FreeBSD and OpenBSD only)

Unix/Macintosh:

./configure
make
make install

If your python binary is in a non-standard location or has a non-standard name, run the following instead:

export PYTHON=/path/to/python
$PYTHON ./configure
make
make install

Windows:

vcbuild.bat

You can download pre-built binaries for various operating systems from http://nodejs.org/download/. The Windows and OS X installers will prompt you for the location to install to. The tarballs are self-contained; you can extract them to a local directory with:

tar xzf /path/to/node-<version>-<platform>-<arch>.tar.gz

Or system-wide with:

cd /usr/local && tar --strip-components 1 -xzf \
                     /path/to/node-<version>-<platform>-<arch>.tar.gz

To run the tests:

Unix/Macintosh:

make test

Windows:

vcbuild.bat test

To build the documentation:

make doc

To read the documentation:

man doc/node.1

Resources for Newcomers