Skip to content

Commit 5480397

Browse files
author
Paul Verest 伟保罗
committed
more links in .md
1 parent c4e6bd4 commit 5480397

File tree

3 files changed

+78
-38
lines changed

3 files changed

+78
-38
lines changed

CONTRIBUTING.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11

2+
Nodeclipse is developers-driven project. That means new features arrives
3+
when someone cares to develop it, asks a question or raises a bug.
4+
25
Reminder from <http://www.nodeclipse.org/#support>
36

47
<h3><a name="support" class="anchor" href="#support"></a>Support</h3>
@@ -20,3 +23,8 @@ Should you report a bug, please include the following:
2023
or from '.log' file from the directory '.metadata' in your workspace.</li>
2124
<li>See example <a href="https://github.com/Nodeclipse/nodeclipse-1/issues/78">issue #78</a></li>
2225
</ol>
26+
</p>
27+
<li>I have an idea/request -- suggest new <a href="http://nodeclipse.uservoice.com/forums/216804-general">ideas for Nodeclipse</a>!</li>
28+
<li>Why do you? -- <a href="https://groups.google.com/forum/#!forum/nodeclipse">Nodeclipse forum(Mailing list)</a>!</li>
29+
<li>When will you? -- <a href="https://groups.google.com/forum/#!forum/nodeclipse">Nodeclipse forum(Mailing list)</a>!</li>
30+
</ul>

org.nodeclipse.help/contents/nashorn.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11

22

3+
# Nashorn
4+
5+
## Links
6+
7+
Main blog <https://blogs.oracle.com/nashorn/> by Jim Laskey
8+
9+
Sources: <http://hg.openjdk.java.net/nashorn/jdk8/nashorn>
10+
11+
- <http://insin-notes.readthedocs.org/en/latest/JavaOne2012/nashorn_node_jpa_persistence_bof.html>
12+
references Node.jar project (implementation of Node.js on JVM). However there are no more news, and the projects
13+
is closed-sourced in Oracle.
14+
15+
- Node.jar, Akhil Arora
16+
- JPA & Node.jar, Doug Clarke
17+
18+
19+
- [Java Platform, Standard Edition Nashorn User's Guide](http://download.java.net/jdk8/docs/technotes/guides/scripting/nashorn/)
20+
21+
22+
- [Java Scripting Programmer's Guide](http://hg.openjdk.java.net/nashorn/jdk8/nashorn/raw-file/29b2b2ed954c/docs/JavaScriptingProgrammersGuide.html)
23+
24+
25+
Old and excited blog post: <http://kaeff.net/posts/why-ruby-and-nodejs-folks-should-care-about-project-nashorn.html>
26+
27+
28+
329
### `jjs` command line util
430

531
C:\Program Files\Java\jdk1.8.0\bin>jjs.exe -v

org.nodeclipse.help/contents/nodejs.md

+44-38
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,49 @@
11
Title: 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.
5864
Add 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

Comments
 (0)