mirror of https://github.com/nodejs/node.git
f0a440d886
Sockets emitted by the 'connection' event are always connected, having them emit the 'connect' event makes no sense. It only confused people, as it's not clear if you have to listen to 'connect' or not. That try..catch block was also very scary. It would silently swallow exceptions in 'connect' listeners and destroy the socket. Makes no sense. Fixes #1047. |
||
---|---|---|
benchmark | ||
cmake | ||
deps | ||
doc | ||
lib | ||
src | ||
test | ||
tools | ||
.gitignore | ||
AUTHORS | ||
CMakeLists.txt | ||
CTestConfig.cmake | ||
ChangeLog | ||
LICENSE | ||
Makefile | ||
Makefile.cmake | ||
README.cmake | ||
README.md | ||
TODO | ||
TODO.win32 | ||
config.h.cmake | ||
configure | ||
wscript |
README.md
Evented I/O for V8 javascript.
To build:
./configure
make
make install
To run the tests:
make test
To build the documentation:
make doc
To read the documentation:
man doc/node.1