Node.js JavaScript runtime 🐢🚀
 
 
 
 
 
 
Go to file
yangguo@chromium.org 007393a09d v8: use correct timezone information on Solaris
`timezone` variable contains the difference, in seconds, between UTC and
local standard time (see `man 3 localtime` on Solaris).

Call to `tzset` is required to apply contents of `TZ` variable to
`timezone` variable.

BUG=v8:2064

Review URL: https://chromiumcodereview.appspot.com/10967066
Patch from Maciej Małecki <me@mmalecki.com>.

This is a back-port of upstream commit r12802 and a forward port of
commit 9fa953d from the v0.8 branch.  V8 3.22 in the master branch
contains the patch so no further forward-porting is necessary.
2013-11-12 15:15:32 +01:00
benchmark benchmark: Fix execArgv handling 2013-08-31 17:58:17 -07:00
deps v8: use correct timezone information on Solaris 2013-11-12 15:15:32 +01:00
doc doc: encoding is ignored if input is a Buffer 2013-11-07 11:02:19 -08:00
lib repl: do not insert duplicates into completions 2013-11-11 15:45:09 -08:00
src src: IsInt64() should return bool, not int 2013-10-23 13:26:25 +02:00
test repl: do not insert duplicates into completions 2013-11-11 15:45:09 -08:00
tools gyp: update to bebdcea 2013-11-10 15:15:34 -08:00
.gitattributes Explicitly disable cr/lf conversion for test fixtures 2011-08-10 19:59:37 +02:00
.gitignore tools: script release steps after jenkins build 2013-08-21 16:59:15 -07:00
.mailmap Update .mailmap and AUTHORS 2013-03-19 20:07:38 +01:00
.travis.yml test: add `.travis.yml` for testing on Travis CI 2011-12-05 16:50:55 -08:00
AUTHORS 2013.09.24, Version 0.10.19 (Stable) 2013-09-24 14:10:33 -07:00
BSDmakefile Tell BSD users to run `gmake` instead. 2011-07-11 14:17:23 +02:00
CONTRIBUTING.md doc: clarify subsystems in CONTRIBUTING.md 2013-05-14 12:31:38 +02:00
ChangeLog 2013.10.18, Version 0.10.21 (Stable) 2013-10-18 14:26:27 -07:00
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
README.md doc: link to pre-built binaries, add install note 2013-10-01 08:37:32 +02:00
common.gypi Revert "build, windows: disable SEH" 2013-03-05 19:40:02 +01:00
configure gyp: update to bebdcea 2013-11-10 15:15:34 -08:00
node.gyp src: Add StringBytes static util class 2013-05-14 13:51:24 -07:00
vcbuild.bat build: vcbuild.bat fix for Visual Studio 2012 2013-05-03 11:32:32 +02:00

README.md

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