0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-24 20:29:23 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
2013-05-21 16:40:31 -07:00
benchmark
deps uv: upgrade to v0.10.7 2013-05-14 16:52:47 -07:00
doc blog: Release 0.10.7 2013-05-17 14:38:02 -07:00
lib net: use timers._unrefActive for internal timeouts 2013-05-21 16:40:31 -07:00
src crypto: Clear error after DiffieHellman key errors 2013-05-20 14:27:32 -07:00
test net: use timers._unrefActive for internal timeouts 2013-05-21 16:40:31 -07:00
tools
.gitattributes
.gitignore
.mailmap
.travis.yml
AUTHORS 2013.05.17, Version 0.10.7 (Stable) 2013-05-17 13:59:10 -07:00
BSDmakefile
ChangeLog 2013.05.17, Version 0.10.7 (Stable) 2013-05-17 13:59:10 -07:00
common.gypi
configure
CONTRIBUTING.md
LICENSE
Makefile
node.gyp
README.md
vcbuild.bat

Evented I/O for V8 javascript. Build Status

To build:

Prerequisites (Unix only):

* 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

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