Node.js JavaScript runtime 🐢🚀
 
 
 
 
 
 
Go to file
Timothy J Fontaine 72c58158f7 test: fix pummel/test-net-many-clients.js
client sockets no longer emit 'connect' event inside the
requestListener, update test-net-many-clients to reflect that
2013-05-08 19:31:45 -07:00
benchmark
deps
doc doc: document stream.Writable 'error' event 2013-05-08 18:15:50 -07:00
lib stream: make Readable.wrap support empty streams 2013-05-08 11:59:40 -07:00
src
test test: fix pummel/test-net-many-clients.js 2013-05-08 19:31:45 -07:00
tools test: don't use total_seconds() because of py2.6 2013-05-07 15:40:04 -07:00
.gitattributes
.gitignore
.mailmap
.travis.yml
AUTHORS
BSDmakefile
CONTRIBUTING.md
ChangeLog
LICENSE
Makefile build: only use DESTDIR instead of PREFIX for pkg 2013-05-06 10:10:05 -07:00
README.md
common.gypi
configure
node.gyp
vcbuild.bat

README.md

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