0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-22 07:37:56 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
2012-01-15 16:50:58 +01:00
benchmark bench: add /echo endpoint to http_simple 2011-12-30 02:03:10 +01:00
deps Merge remote branch 'origin/v0.6' 2012-01-09 11:20:22 -08:00
doc Merge branch 'v0.6' 2012-01-12 02:17:44 +06:00
lib http: Upgrade/CONNECT request should detach its socket earlier 2012-01-12 14:17:19 +09:00
src zlib: reset() method for deflate/inflate streams 2012-01-12 03:19:19 +06:00
test test-eio-limit: add missing copyright headers 2012-01-14 23:51:53 +06:00
tools Merge branch 'v0.6' 2012-01-12 02:17:44 +06: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
ChangeLog docs: fix ChangeLog 2012-01-07 07:51:51 +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
LICENSE s/NPM/npm/ 2011-12-05 16:20:44 -08:00
Makefile Merge branch 'v0.6' 2012-01-12 02:17:44 +06:00
node.gyp build: remove the old -DPLATFORM="mac" define 2012-01-12 15:11:02 +01:00
README.md docs: mention that python 2.6 or 2.7 is required 2012-01-05 16:44:22 +01:00
vcbuild.bat Merge remote branch 'origin/v0.6' 2012-01-09 11:20:22 -08:00

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