Node.js JavaScript runtime 🐢🚀
 
 
 
 
 
 
Go to file
Colton Baker ce485791db Readline proposal and bugfixes. Related: #2737 #2756
- Removed extra newline from .question(); Users can input a
  newline if it they require it.
- Removed .close() due to it only emulating closing, causing a bug where
  readline is left open to trigger events such as .on('line', ...').
- Removed ._attemptClose()
- .pause() now triggers event .on('pause', ...)
- .resume() now triggers event .on('resume', ...)
- CTRL-C (SIGINT) in readline will now default to .pause() if no SIGINT event
  is present.
- CTRL-D (delete right) will also default to .pause() if there is nothing to
  delete (signaling the end of the file).
- Added new event `SIGTSTP`
- Added new event `SIGCONT`
- Added `resume` to `write` to resume the stream if paused.
- Docs updated.
- Updated repl.js
2012-02-16 12:12:03 +06:00
benchmark bench: add /echo endpoint to http_simple 2011-12-30 02:03:10 +01:00
deps 2012.02.14, Version 0.7.4 (unstable) 2012-02-14 14:34:43 -08:00
doc Readline proposal and bugfixes. Related: #2737 #2756 2012-02-16 12:12:03 +06:00
lib Readline proposal and bugfixes. Related: #2737 #2756 2012-02-16 12:12:03 +06:00
src process: remove old notices about removed methods 2012-02-15 19:45:33 -08:00
test Generate Date headers on responses when not already present. 2012-02-15 12:35:34 -08:00
tools Merge remote-tracking branch 'origin/v0.6' 2012-02-12 16:12:26 +01:00
.gitattributes Explicitly disable cr/lf conversion for test fixtures 2011-08-10 19:59:37 +02:00
.gitignore build: respect --debug configure switch 2012-01-17 23:03:21 +01:00
.travis.yml test: add `.travis.yml` for testing on Travis CI 2011-12-05 16:50:55 -08:00
AUTHORS 2012.02.14, Version 0.7.4 (unstable) 2012-02-14 14:34:43 -08:00
BSDmakefile Tell BSD users to run `gmake` instead. 2011-07-11 14:17:23 +02:00
ChangeLog 2012.02.14, Version 0.7.4 (unstable) 2012-02-14 14:34:43 -08:00
LICENSE s/NPM/npm/ 2011-12-05 16:20:44 -08:00
Makefile docs: Move images out of the dist tarball 2012-02-13 15:27:06 -08:00
README.md docs: mention that python 2.6 or 2.7 is required 2012-01-05 16:44:22 +01:00
common.gypi Default to static linking CRT on Windows. 2012-02-15 13:32:46 -08:00
configure build: detect host_arch better 2012-02-13 17:43:30 +01:00
node.gyp Merge remote-tracking branch 'origin/v0.6' 2012-02-12 16:12:26 +01:00
vcbuild.bat Merge remote-tracking branch 'origin/v0.6' 2012-02-12 16:12:26 +01:00

README.md

Evented I/O for V8 javascript. Build Status

To build:

Unix/Macintosh (requires python 2.6 or 2.7):

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