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 deeaf8fab9 2013.04.23, Version 0.10.5 (Stable)
* uv: Upgrade to 0.10.5 (isaacs)

* build: added support for Visual Studio 2012 (Miroslav Bajtoš)

* http: Don't try to destroy nonexistent sockets (isaacs)

* crypto: LazyTransform on properties, not methods (isaacs)

* assert: put info in err.message, not err.name (Ryan Doenges)

* dgram: fix no address bind() (Ben Noordhuis)

* handle_wrap: fix NULL pointer dereference (Ben Noordhuis)

* os: fix unlikely buffer overflow in os.type() (Ben Noordhuis)

* stream: Fix unshift() race conditions (isaacs)
2013-04-23 13:27:37 -07:00
benchmark
deps uv: Upgrade to 0.10.5 2013-04-22 17:39:22 -07:00
doc blog: v0.11.1 does not work on windows x64 2013-04-19 09:22:06 -07:00
lib http: Don't try to destroy nonexistent sockets 2013-04-22 09:54:04 -07:00
src 2013.04.23, Version 0.10.5 (Stable) 2013-04-23 13:27:37 -07:00
test http: Don't try to destroy nonexistent sockets 2013-04-22 09:54:04 -07:00
tools
.gitattributes
.gitignore
.mailmap
.travis.yml
AUTHORS 2013.04.23, Version 0.10.5 (Stable) 2013-04-23 13:27:37 -07:00
BSDmakefile
ChangeLog 2013.04.23, Version 0.10.5 (Stable) 2013-04-23 13:27:37 -07:00
common.gypi
configure
CONTRIBUTING.md
LICENSE
Makefile
node.gyp
README.md
vcbuild.bat build: added support for Visual Studio 2012 2013-04-23 16:41:11 +02:00

Evented I/O for V8 javascript. Build Status

To build:

Prerequisites (Unix only):

* 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

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