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
isaacs b97c28f59e http: provide backpressure for pipeline flood
If a client sends a lot more pipelined requests than we can handle, then
we need to provide backpressure so that the client knows to back off.
Do this by pausing both the stream and the parser itself when the
responses are not being read by the downstream client.

Backport of 085dd30
2013-10-16 17:12:34 -07:00
benchmark benchmark: Fix execArgv handling 2013-08-31 17:58:17 -07:00
deps uv: Upgrade to v0.10.17 2013-09-24 13:46:19 -07:00
doc doc: cluster documentation cleanup and corrections 2013-10-16 15:10:13 -07:00
lib http: provide backpressure for pipeline flood 2013-10-16 17:12:34 -07:00
src http_parser: expose pause/resume method for parser 2013-10-16 17:12:34 -07:00
test http: provide backpressure for pipeline flood 2013-10-16 17:12:34 -07:00
tools blog: Remove wp-to-markdown script 2013-10-09 14:00:32 -07:00
.gitattributes
.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
AUTHORS 2013.09.24, Version 0.10.19 (Stable) 2013-09-24 14:10:33 -07:00
BSDmakefile
ChangeLog 2013.09.30, Version 0.10.20 (Stable) 2013-09-30 13:52:48 -07:00
common.gypi Revert "build, windows: disable SEH" 2013-03-05 19:40:02 +01:00
configure configure: add mips-float-abi (soft, hard) option 2013-09-07 22:25:50 +02:00
CONTRIBUTING.md doc: clarify subsystems in CONTRIBUTING.md 2013-05-14 12:31:38 +02:00
LICENSE doc: Update LICENSE for npm's Artistic 2.0 2013-08-05 13:56:05 -07:00
Makefile build: use separate env vars for signing 2013-07-09 13:50:45 -07:00
node.gyp src: Add StringBytes static util class 2013-05-14 13:51:24 -07:00
README.md doc: link to pre-built binaries, add install note 2013-10-01 08:37:32 +02:00
vcbuild.bat build: vcbuild.bat fix for Visual Studio 2012 2013-05-03 11:32:32 +02:00

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