0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-21 21:19:50 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
Alexis Campailla c06495713a crypto: improve memory usage
ClientHelloParser used to contain an 18k buffer that was kept around
for the life of the connection, even though it was not needed in many
situations. I changed it to be deallocated when it's determined to
be no longer needed.

Signed-off-by: Fedor Indutny <fedor@indutny.com>
2014-05-16 01:33:08 +04:00
benchmark
deps npm: upgrade to 1.4.10 2014-05-05 18:20:40 -07:00
doc
lib child_process: do not set args before throwing 2014-05-16 01:31:59 +04:00
src crypto: improve memory usage 2014-05-16 01:33:08 +04:00
test child_process: spawn() does not throw TypeError 2014-05-13 12:25:00 +04:00
tools
.gitattributes
.gitignore
.mailmap
.travis.yml
AUTHORS
BSDmakefile
ChangeLog
common.gypi build: fix g++ 4.8 build, disable -Werror 2014-03-23 16:11:08 -07:00
configure configure: allow --with-dtrace on freebsd 2014-02-21 00:46:26 +04:00
CONTRIBUTING.md
LICENSE
Makefile
node.gyp
README.md
vcbuild.bat

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