0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
Bert Belder bb675baaa9 net.js: don't pretend that everything is okay when unwrapping fails
In case of an UNWRAP failure, the binding returns -1, which is truthy.
2012-05-09 03:56:06 +02:00
benchmark
deps Force inlining CopyChars and String::Get. 2012-05-09 03:56:04 +02:00
doc docs: add warning to vm module docs 2012-05-07 21:39:08 +02:00
lib net.js: don't pretend that everything is okay when unwrapping fails 2012-05-09 03:56:06 +02:00
src Don't use _snprintf() on Windows, it's not safe. 2012-05-08 16:02:14 +02:00
test
tools
.gitattributes
.gitignore
.travis.yml
AUTHORS
BSDmakefile
ChangeLog
common.gypi
configure
LICENSE
Makefile
node.gyp
README.md
vcbuild.bat

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