0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-25 08:19:38 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
Ben Noordhuis d6fb764cc2 test: don't use --max-stack-size=0
--max-stack-size was removed in 3a87b31, use --stack-size instead.
What's more, a zero length stack will likely crash the process.
2013-09-02 21:00:00 +02:00
benchmark Merge remote-tracking branch 'ry/v0.10' 2013-08-31 17:58:44 -07:00
deps uv: upgrade to v0.11.11 2013-08-29 15:38:32 +02:00
doc vm: document vm2's changes. 2013-08-28 22:27:24 -07:00
lib vm: update API to use options argument 2013-08-28 22:27:24 -07:00
src Revert "src: call uv_loop_delete() on exit in debug mode" 2013-08-30 23:28:22 +02:00
test test: don't use --max-stack-size=0 2013-09-02 21:00:00 +02:00
tools Merge remote-tracking branch 'ry/v0.10' 2013-08-28 10:11:17 -07:00
.gitattributes
.gitignore
.mailmap
android-configure
AUTHORS Merge remote-tracking branch 'ry/v0.10' 2013-08-28 10:11:17 -07:00
BSDmakefile
ChangeLog Merge remote-tracking branch 'ry/v0.10' 2013-08-28 10:11:17 -07:00
common.gypi
configure
CONTRIBUTING.md
LICENSE
Makefile
node.gyp
README.md
vcbuild.bat

Evented I/O for V8 javascript.

To build:

Prerequisites (Unix only):

* GCC 4.2 or newer
* 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

Prerequisites (Windows only):

* Python 2.6 or 2.7
* Visual Studio 2010 or 2012

Windows:

vcbuild nosign

To run the tests:

Unix/Macintosh:

make test

Windows:

vcbuild test

To build the documentation:

make doc

To read the documentation:

man doc/node.1

Resources for Newcomers