0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 15:06:33 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
isaacs 15508589a1 addon: Pass module object to NODE_MODULE init function
mainly to allow native addons to export single functions on
rather than being restricted to operating on an existing
object.

Init functions now receive exports as the first argument, like
before, but also the module object as the second argument, if they
support it.

Related to #4634

cc: @rvagg
2013-01-25 14:25:35 -08:00
benchmark benchmark: Add resume() in static_http_server 2013-01-17 14:54:59 -08:00
deps npm: Upgrade to v1.2.3 2013-01-24 09:10:01 -08:00
doc buffer: clean up copy() asserts and tests 2013-01-25 11:59:21 +01:00
lib addon: Pass module object to NODE_MODULE init function 2013-01-25 14:25:35 -08:00
src addon: Pass module object to NODE_MODULE init function 2013-01-25 14:25:35 -08:00
test addon: Pass module object to NODE_MODULE init function 2013-01-25 14:25:35 -08:00
tools dtrace: fix generation of v8 constants on freebsd 2013-01-21 12:46:27 +04:00
.gitattributes
.gitignore gitignore: ignore v8.log files 2013-01-24 11:35:29 +01:00
.mailmap
.travis.yml
AUTHORS 2013.01.24, Version 0.9.8 (Unstable) 2013-01-24 09:15:25 -08:00
BSDmakefile
ChangeLog 2013.01.24, Version 0.9.8 (Unstable) 2013-01-24 09:15:25 -08:00
common.gypi gyp: fix build with dtrace support on FreeBSD 2013-01-21 12:47:26 +04:00
configure configure: define "arm_fpu" and "arm_neon" for ARM 2013-01-10 17:13:59 -08:00
CONTRIBUTING.md
LICENSE buffer: floating point read/write improvements 2013-01-16 10:17:20 -08:00
Makefile Merge remote-tracking branch 'ry/v0.8' into master 2013-01-11 10:18:07 -08:00
node.gyp buffer: floating point read/write improvements 2013-01-16 10:17:20 -08:00
README.md
vcbuild.bat windows: improve Visual Studio Express build support 2013-01-03 23:38:25 +01:00

Evented I/O for V8 javascript. Build Status

To build:

Prerequisites (Unix only):

* Python 2.6 or 2.7
* GNU Make 3.81 or newer
* libexecinfo (FreeBSD and OpenBSD only)

Unix/Macintosh:

./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