2011-12-04 01:58:49 +01:00
|
|
|
Evented I/O for V8 javascript. [![Build Status](https://secure.travis-ci.org/joyent/node.png)](http://travis-ci.org/joyent/node)
|
2011-01-24 05:52:37 +01:00
|
|
|
===
|
|
|
|
|
2011-08-27 00:04:47 +02:00
|
|
|
### To build:
|
|
|
|
|
2012-09-02 13:32:57 +02:00
|
|
|
Prerequisites (Unix only):
|
|
|
|
|
2013-05-22 13:47:29 +02:00
|
|
|
* GCC 4.2 or newer
|
2012-09-02 13:32:57 +02:00
|
|
|
* Python 2.6 or 2.7
|
|
|
|
* GNU Make 3.81 or newer
|
|
|
|
* libexecinfo (FreeBSD and OpenBSD only)
|
|
|
|
|
|
|
|
Unix/Macintosh:
|
2011-01-24 05:52:37 +01:00
|
|
|
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2013-01-22 13:53:49 +01:00
|
|
|
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
|
|
|
|
|
2011-08-27 00:04:47 +02:00
|
|
|
Windows:
|
|
|
|
|
|
|
|
vcbuild.bat
|
|
|
|
|
2013-10-01 08:35:24 +02:00
|
|
|
You can download pre-built binaries for various operating systems from
|
|
|
|
[http://nodejs.org/download/](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
|
|
|
|
|
2011-08-27 00:04:47 +02:00
|
|
|
### To run the tests:
|
|
|
|
|
|
|
|
Unix/Macintosh:
|
2011-01-24 05:52:37 +01:00
|
|
|
|
|
|
|
make test
|
|
|
|
|
2011-08-27 00:04:47 +02:00
|
|
|
Windows:
|
|
|
|
|
|
|
|
vcbuild.bat test
|
|
|
|
|
|
|
|
### To build the documentation:
|
2011-01-24 05:52:37 +01:00
|
|
|
|
|
|
|
make doc
|
|
|
|
|
2011-08-27 00:04:47 +02:00
|
|
|
### To read the documentation:
|
2011-01-24 05:52:37 +01:00
|
|
|
|
|
|
|
man doc/node.1
|
|
|
|
|
|
|
|
Resources for Newcomers
|
|
|
|
---
|
2011-11-01 20:52:35 +01:00
|
|
|
- [The Wiki](https://github.com/joyent/node/wiki)
|
2011-01-24 05:52:37 +01:00
|
|
|
- [nodejs.org](http://nodejs.org/)
|
2013-09-13 14:46:06 +02:00
|
|
|
- [how to install node.js and npm (node package manager)](http://www.joyent.com/blog/installing-node-and-npm/)
|
2011-11-01 20:52:35 +01:00
|
|
|
- [list of modules](https://github.com/joyent/node/wiki/modules)
|
2013-05-10 00:15:39 +02:00
|
|
|
- [searching the npm registry](http://npmjs.org/)
|
2011-11-01 20:52:35 +01:00
|
|
|
- [list of companies and projects using node](https://github.com/joyent/node/wiki/Projects,-Applications,-and-Companies-Using-Node)
|
2011-01-24 05:52:37 +01:00
|
|
|
- [node.js mailing list](http://groups.google.com/group/nodejs)
|
|
|
|
- irc chatroom, [#node.js on freenode.net](http://webchat.freenode.net?channels=node.js&uio=d4)
|
2011-11-01 20:52:35 +01:00
|
|
|
- [community](https://github.com/joyent/node/wiki/Community)
|
|
|
|
- [contributing](https://github.com/joyent/node/wiki/Contributing)
|
|
|
|
- [big list of all the helpful wiki pages](https://github.com/joyent/node/wiki/_pages)
|