Node.js JavaScript runtime 🐢🚀
 
 
 
 
 
 
Go to file
Alexis Campailla 42cd468901 test: fix http-incoming-pipelined-socket-destroy
The test was calling server.close() after write on the socket
had completed. However the fact that the write had completed was
not valid indication that the server had received the data.

This would result in a premutaure closing of the server and
an ECONNRESET event on the client.
2014-01-23 12:42:56 -08:00
benchmark benchmark: Fix execArgv handling 2013-08-31 17:58:17 -07:00
deps uv: Upgrade to v0.10.23 2014-01-22 20:47:12 -08:00
doc blog: Post for v0.10.25 2014-01-23 11:44:32 -08:00
lib src: lint lib/net.js 2014-01-22 21:05:51 -08:00
src Now working on 0.10.26 2014-01-23 11:44:32 -08:00
test test: fix http-incoming-pipelined-socket-destroy 2014-01-23 12:42:56 -08:00
tools gyp: fix build with python 2.6 2014-01-13 22:03:40 -08:00
.gitattributes Explicitly disable cr/lf conversion for test fixtures 2011-08-10 19:59:37 +02:00
.gitignore tools: script release steps after jenkins build 2013-08-21 16:59:15 -07:00
.mailmap Update .mailmap and AUTHORS 2013-03-19 20:07:38 +01:00
.travis.yml test: add `.travis.yml` for testing on Travis CI 2011-12-05 16:50:55 -08:00
AUTHORS 2014.01.23, Version 0.10.25 (Stable) 2014-01-22 21:03:08 -08:00
BSDmakefile Tell BSD users to run `gmake` instead. 2011-07-11 14:17:23 +02:00
CONTRIBUTING.md doc: clarify subsystems in CONTRIBUTING.md 2013-05-14 12:31:38 +02:00
ChangeLog 2014.01.23, Version 0.10.25 (Stable) 2014-01-22 21:03:08 -08:00
LICENSE doc: Update LICENSE for npm's Artistic 2.0 2013-08-05 13:56:05 -07:00
Makefile gyp: update to bebdcea 2013-11-10 15:15:34 -08:00
README.md doc: link to pre-built binaries, add install note 2013-10-01 08:37:32 +02:00
common.gypi gyp: fix non-ninja build 2014-01-20 18:39:05 +04:00
configure build: pass --no-parallel by default to gyp 2013-12-06 21:07:46 -08:00
node.gyp gyp: fix `ninja` build on linux 2014-01-16 17:11:04 +00:00
vcbuild.bat build: add settings for VS 2013 to vcbuild.bat 2013-12-28 16:58:01 +04:00

README.md

Evented I/O for V8 javascript. Build Status

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

Windows:

vcbuild.bat

You can download pre-built binaries for various operating systems from http://nodejs.org/download/. The Windows and OS X installers will prompt you for the location to install to. The tarballs are self-contained; you can extract them to a local directory with:

tar xzf /path/to/node-<version>-<platform>-<arch>.tar.gz

Or system-wide with:

cd /usr/local && tar --strip-components 1 -xzf \
                     /path/to/node-<version>-<platform>-<arch>.tar.gz

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