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
Timothy J Fontaine b5e161989c build: ./configure pass positional args to gyp
use `--` to specify the arguments you want to pass directly to gyp.

for example: `./configure -- --no-parallel -Dsome_define=foo`

fixes #6370
2013-12-06 21:07:00 -08:00
benchmark benchmark: Fix execArgv handling 2013-08-31 17:58:17 -07:00
deps npm: Upgrade to v1.3.15 2013-11-20 11:08:52 -08:00
doc doc: mention execArgv in setupMaster 2013-12-06 10:45:40 -08:00
lib crypto: Make Decipher._flush() emit errors. 2013-12-04 19:52:15 +04:00
src process: document kill(0), disallow kill(O_RDWR) 2013-12-02 10:41:37 -08:00
test crypto: Make Decipher._flush() emit errors. 2013-12-04 19:52:15 +04:00
tools gyp: update to bebdcea 2013-11-10 15:15:34 -08:00
.gitattributes
.gitignore tools: script release steps after jenkins build 2013-08-21 16:59:15 -07:00
.mailmap
.travis.yml
AUTHORS 2013.11.12, Version 0.10.22 (Stable) 2013-11-12 12:22:12 -08:00
BSDmakefile
ChangeLog 2013.11.12, Version 0.10.22 (Stable) 2013-11-12 12:22:12 -08:00
common.gypi build: include postmortem symbols on linux 2013-12-01 18:57:43 -08:00
configure build: ./configure pass positional args to gyp 2013-12-06 21:07:00 -08:00
CONTRIBUTING.md
LICENSE doc: Update LICENSE for npm's Artistic 2.0 2013-08-05 13:56:05 -07:00
Makefile gyp: update to bebdcea 2013-11-10 15:15:34 -08:00
node.gyp build: include postmortem symbols on linux 2013-12-01 18:57:43 -08:00
README.md doc: link to pre-built binaries, add install note 2013-10-01 08:37:32 +02:00
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