1
1
Title: Nodeclipse Help - Node.js
2
2
3
+ # Node.js
4
+
5
+ Of course < http://nodejs.org/ > .
6
+
7
+ Sources at GitHub < https://github.com/joyent/node/ > .
8
+
3
9
## Node.js
4
10
5
11
``` 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/
29
35
```
30
36
31
37
32
38
``` 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' }
41
47
```
42
48
43
49
### Node.js instances
@@ -58,13 +64,13 @@ Node.js sources have "Node.js Core Modules" in `lib` folder, that may be useful.
58
64
Add following snippet to project ` .project ` file to reference Node.js sources.
59
65
60
66
``` 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 >
68
74
```
69
75
70
76
![ ] ( images/nodejs-sources-lib.PNG )
0 commit comments