0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
isaacs e3074689f5 Fix #3521 Use an object as the process.env proto
For some reason, though, it looks like EnvGetter is not called for the
key `__proto__`, so I can't make the info->Data() accessible.  However,
putting the Object.prototype keys there, in such a way that they are not
OwnProperties, and are supersceded by environs, makes process.env much
less weird.
2012-06-26 09:08:40 -07:00
benchmark
deps
doc Merge remote-tracking branch 'origin/v0.8' 2012-06-26 03:38:39 +02:00
lib
src Fix #3521 Use an object as the process.env proto 2012-06-26 09:08:40 -07:00
test Fix #3521 Use an object as the process.env proto 2012-06-26 09:08:40 -07:00
tools
.gitattributes
.gitignore
.travis.yml
AUTHORS
BSDmakefile
ChangeLog
common.gypi build: enable strict aliasing if gcc < 4.5.0 2012-06-26 03:39:34 +02:00
configure build: enable strict aliasing if gcc < 4.5.0 2012-06-26 03:39:34 +02:00
LICENSE
Makefile
node.gyp
README.md
vcbuild.bat

Evented I/O for V8 javascript. Build Status

To build:

Unix/Macintosh (requires python 2.6 or 2.7):

./configure
make
make install

Windows:

vcbuild.bat

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