Node.js JavaScript runtime 🐢🚀
 
 
 
 
 
 
Go to file
Felix Geisendörfer b3f91f15b2 Remove support for multi-source pipe()
This reverts 6c5b31bd which had too few use cases, too much complexity,
and can be handled in user-land by using `{end: false}`.

Closes #1996
2011-11-22 08:51:19 -08:00
benchmark bench: optimize io.c benchmark 2011-11-10 21:13:37 +01:00
deps uv: upgrade to e4680cc 2011-11-18 13:07:01 +01:00
doc docs: clarify addon docs 2011-11-17 13:15:49 +01:00
lib Remove support for multi-source pipe() 2011-11-22 08:51:19 -08:00
src crypto: use the libuv rwlock API 2011-11-18 13:07:13 +01:00
test Remove support for multi-source pipe() 2011-11-22 08:51:19 -08:00
tools build: fix gyp xcode project generator 2011-11-17 23:49:55 +01:00
.gitattributes Explicitly disable cr/lf conversion for test fixtures 2011-08-10 19:59:37 +02:00
.gitignore Improve OSX installer 2011-11-10 18:41:44 -08:00
AUTHORS Bump version to v0.6.1 2011-11-11 14:56:27 -08:00
BSDmakefile Tell BSD users to run `gmake` instead. 2011-07-11 14:17:23 +02:00
ChangeLog Bump version to v0.6.1 2011-11-11 14:56:27 -08:00
LICENSE punycode: replace with Mathias Bynens's implementation 2011-11-11 17:02:43 +01:00
Makefile Add missing rm 2011-11-18 12:03:35 -08:00
README.md doc: fix links 2011-11-01 22:26:52 +01:00
common.gypi Support native extension loading on Windows 2011-10-29 01:06:51 +02:00
configure Force makefile generation in gyp 2011-11-17 17:30:30 -08:00
node.gyp build: remove v8-node.gyp 2011-11-17 23:48:40 +01:00
vcbuild.bat Fix strange vcbuild "label not found" error 2011-11-17 00:10:14 +01:00
wscript build: fix race in parallel build 2011-11-08 00:25:54 +01:00

README.md

Evented I/O for V8 javascript.

To build:

Unix/Macintosh (requires python >= 2.5.2):

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