0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-28 22:46:31 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
Ben Noordhuis 03eb41c2ec net: don't emit 'close' event twice
Don't allow `socket.destroy()` to run twice. The self-destruct sequence itself
is idempotent but it makes the 'close' and 'error' events fire more than once,
which may confuse listeners.

Fixes #2223.
2011-12-01 14:57:06 +01:00
benchmark
deps Upgrade libuv to fce90652ed38ab0925131ed141972354a494933b 2011-11-29 12:45:39 +01:00
doc Docs template: HTML cleanup 2011-11-30 15:28:48 +01:00
lib net: don't emit 'close' event twice 2011-12-01 14:57:06 +01:00
src fixed problem with rss memory reporting incorrect number over 4 gigs 2011-11-30 02:11:40 +01:00
test net: don't emit 'close' event twice 2011-12-01 14:57:06 +01:00
tools docs: add rel="canonical" link to latest API docs 2011-11-28 16:47:53 +01:00
.gitattributes
.gitignore
AUTHORS
BSDmakefile
ChangeLog Bump version to v0.6.3 2011-11-25 11:23:28 +01:00
common.gypi
configure
configure-gyp
LICENSE
Makefile build: fix circular dependency in doc target 2011-11-23 12:56:05 +01:00
Makefile-gyp
node.gyp
README.md
vcbuild.bat
wscript build: add --without-npm flag to configure script 2011-11-30 15:50:08 +01:00

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