Node fork to make it suitable for embedding in Electron
Перейти к файлу
Ryan Dahl 716f5bc66b Add make dist-upload 2012-01-16 18:52:36 -08:00
benchmark bench: add /echo endpoint to http_simple 2011-12-30 02:03:10 +01:00
deps upgrade libuv to 52511b9ddc 2012-01-16 17:24:53 -08:00
doc Merge remote branch 'origin/v0.6' 2012-01-16 15:20:26 -08:00
lib Merge remote branch 'origin/v0.6' 2012-01-16 15:20:26 -08:00
src Merge remote branch 'origin/v0.6' 2012-01-16 15:20:26 -08:00
test Merge remote branch 'origin/v0.6' 2012-01-16 15:20:26 -08:00
tools Revert "gyp: install node-gyp" 2012-01-16 14:07:35 -08:00
.gitattributes Explicitly disable cr/lf conversion for test fixtures 2011-08-10 19:59:37 +02:00
.gitignore GYP: rename options.gypi to config.gypi 2011-12-23 14:25:17 -08:00
.travis.yml test: add `.travis.yml` for testing on Travis CI 2011-12-05 16:50:55 -08:00
AUTHORS 2012.01.06, Version 0.6.7 (stable) 2012-01-06 16:31:03 -08:00
BSDmakefile Tell BSD users to run `gmake` instead. 2011-07-11 14:17:23 +02:00
ChangeLog docs: fix ChangeLog 2012-01-07 07:51:51 +01:00
LICENSE s/NPM/npm/ 2011-12-05 16:20:44 -08:00
Makefile Add make dist-upload 2012-01-16 18:52:36 -08:00
README.md docs: mention that python 2.6 or 2.7 is required 2012-01-05 16:44:22 +01:00
common.gypi build: compile without -fvisibility=hidden 2012-01-05 16:50:55 +01:00
configure build: support --dest-cpu configure switch again 2012-01-15 16:50:58 +01:00
node.gyp fix windows build 2012-01-16 14:44:49 -08:00
vcbuild.bat Merge remote branch 'origin/v0.6' 2012-01-09 11:20:22 -08:00

README.md

Evented I/O for V8 javascript. Build Status

To build:

Unix/Macintosh (requires python 2.6 or 2.7):

./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