0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
2012-01-16 15:15:34 -08:00
benchmark bench: add /echo endpoint to http_simple 2011-12-30 02:03:10 +01:00
deps Upgrade libuv to joyent/libuv@f5bd21f 2012-01-16 15:15:34 -08:00
doc http, querystring: added limits to prevent DoS 2012-01-16 02:45:05 +06:00
lib http: use util._deprecationWarning for deprecation warning 2012-01-16 19:45:14 +01:00
src fix windows build 2012-01-16 14:44:49 -08:00
test querystring: fix maxKeys = 0 is ignored 2012-01-16 16:36:24 +06:00
tools Revert "gyp: install node-gyp" 2012-01-16 14:07:35 -08:00
.gitattributes
.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 fix windows build 2012-01-16 14:44:49 -08: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