11Title: Nodeclipse Help - Node.js
22
3+ # Node.js
4+
5+ Of course < http://nodejs.org/ > .
6+
7+ Sources at GitHub < https://github.com/joyent/node/ > .
8+
39## Node.js
410
511``` txt
6- $ node -h
7- Usage: node [options] [ -e script | script.js ] [arguments]
8- node debug script.js [arguments]
9-
10- Options:
11- -v, --version print node's version
12- -e, --eval script evaluate script
13- -p, --print evaluate script and print result
14- -i, --interactive always enter the REPL even if stdin
15- does not appear to be a terminal
16- --no-deprecation silence deprecation warnings
17- --trace-deprecation show stack traces on deprecations
18- --v8-options print v8 command line options
19- --max-stack-size=val set max v8 stack size (bytes)
20-
21- Environment variables:
22- NODE_PATH ';'-separated list of directories
23- prefixed to the module search path.
24- NODE_MODULE_CONTEXTS Set to 1 to load modules in their own
25- global contexts.
26- NODE_DISABLE_COLORS Set to 1 to disable colors in the REPL
27-
28- Documentation can be found at http://nodejs.org/
12+ $ node -h
13+ Usage: node [options] [ -e script | script.js ] [arguments]
14+ node debug script.js [arguments]
15+
16+ Options:
17+ -v, --version print node's version
18+ -e, --eval script evaluate script
19+ -p, --print evaluate script and print result
20+ -i, --interactive always enter the REPL even if stdin
21+ does not appear to be a terminal
22+ --no-deprecation silence deprecation warnings
23+ --trace-deprecation show stack traces on deprecations
24+ --v8-options print v8 command line options
25+ --max-stack-size=val set max v8 stack size (bytes)
26+
27+ Environment variables:
28+ NODE_PATH ';'-separated list of directories
29+ prefixed to the module search path.
30+ NODE_MODULE_CONTEXTS Set to 1 to load modules in their own
31+ global contexts.
32+ NODE_DISABLE_COLORS Set to 1 to disable colors in the REPL
33+
34+ Documentation can be found at http://nodejs.org/
2935```
3036
3137
3238``` txt
33- $ node -p "process.versions"
34- { http_parser: '1.0',
35- node: '0.10.0',
36- v8: '3.14.5.8',
37- ares: '1.9.0-DEV',
38- uv: '0.9',
39- zlib: '1.2.3',
40- openssl: '1.0.1e' }
39+ $ node -p "process.versions"
40+ { http_parser: '1.0',
41+ node: '0.10.0',
42+ v8: '3.14.5.8',
43+ ares: '1.9.0-DEV',
44+ uv: '0.9',
45+ zlib: '1.2.3',
46+ openssl: '1.0.1e' }
4147```
4248
4349### Node.js instances
@@ -58,13 +64,13 @@ Node.js sources have "Node.js Core Modules" in `lib` folder, that may be useful.
5864Add following snippet to project ` .project ` file to reference Node.js sources.
5965
6066``` xml
61- <linkedResources >
62- <link >
63- <name >nodejs-sources-lib</name >
64- <type >2</type >
65- <location >E:/Enide/node-sources/node-v0.10.19/lib/</location >
66- </link >
67- </linkedResources >
67+ <linkedResources >
68+ <link >
69+ <name >nodejs-sources-lib</name >
70+ <type >2</type >
71+ <location >E:/Enide/node-sources/node-v0.10.19/lib/</location >
72+ </link >
73+ </linkedResources >
6874```
6975
7076![ ] ( images/nodejs-sources-lib.PNG )
0 commit comments