commit | 6c36d197bbcc788de7797021c6c91afe1dedc23f | [log] [tgz] |
---|---|---|
author | Tyler Kellen <tyler@sleekcode.net> | Wed Dec 03 16:45:44 2014 |
committer | Ben Noordhuis <info@bnoordhuis.nl> | Tue Dec 09 15:18:50 2014 |
tree | d2d944938dd4dca965146627aba2dba722f20730 | |
parent | 4ccc5a64cedbd5d6864a502f127725bb6b925a46 [diff] |
docs: fix project name Renamed node.js to io.js and updated links to external resources. PR-URL: https://github.com/iojs/io.js/pull/42 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>

This repository began as a GitHub fork of joyent/node where contributions, releases, and contributorship are under an open governance model.
We intend to land, with increasing regularity, releases which are compatible with the npm ecosystem that has been built to date for node.js.
Prerequisites (Unix only):
gcc
and g++
4.8 or newer, orclang
and clang++
3.3 or newerUnix/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
Prerequisites (Windows only):
Windows:
vcbuild nosign
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 in which to install. 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
Unix/Macintosh:
make test
Windows:
vcbuild test
make doc
man doc/node.1
Intl
(ECMA-402) support:Note: more docs, including how to reduce disk footprint, are on the wiki.
pkg-config --modversion icu-i18n && ./configure --with-intl=system-icu
First: Unpack latest ICU icu4c-##.#-src.tgz (or .zip
) as deps/icu
(You'll have: deps/icu/source/...
)
Unix/Macintosh:
./configure --with-intl=full-icu
Windows:
vcbuild full-icu