|
26 | 26 | <li><a href="#download">Download</a></li>
|
27 | 27 | <li><a href="https://github.com/joyent/node/wiki/ChangeLog">ChangeLog</a></li>
|
28 | 28 | <li><a href="#about">About</a></li>
|
29 |
| - <li><a href="http://nodejs.org/docs/v0.4.9/api">v0.4.9 docs</a></li> |
30 |
| - <li><a href="http://nodejs.org/docs/v0.5.0/api">v0.5.0 docs</a></li> |
| 29 | + <li><a href="http://nodejs.org/docs/v0.4.10/api">v0.4.10 docs</a></li> |
| 30 | + <li><a href="http://nodejs.org/docs/v0.5.1/api">v0.5.1 docs</a></li> |
31 | 31 | <br/>
|
32 | 32 | <li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
|
33 | 33 | <li><a href="http://blog.nodejs.org/">Blog</a></li>
|
@@ -110,17 +110,18 @@ <h2 id="download">Download</h2>
|
110 | 110 | <a href="http://github.com/joyent/node/tree/master">git repo</a>
|
111 | 111 | </p>
|
112 | 112 |
|
113 |
| - <p> |
114 |
| - 2011.06.29 (stable) |
115 |
| - <a href="http://nodejs.org/dist/node-v0.4.9.tar.gz">node-v0.4.9.tar.gz</a> |
116 |
| - (<a href="http://nodejs.org/docs/v0.4.9/api/index.html">Documentation</a>) |
117 |
| - </p> |
| 113 | + <p>2011.07.19 v0.4.10 (stable) |
| 114 | + <ul class="release"> |
| 115 | + <li><a href="http://nodejs.org/dist/node-v0.4.10.tar.gz"><code>node-v0.4.10.tar.gz</code> Source Code</a> |
| 116 | + <li><a href="http://nodejs.org/docs/v0.4.10/api/index.html">Documentation</a> |
| 117 | + </ul> |
118 | 118 |
|
119 |
| - <p> |
120 |
| - 2011.07.05 (unstable) |
121 |
| - <a href="http://nodejs.org/dist/node-v0.5.0.tar.gz">node-v0.5.0.tar.gz</a> |
122 |
| - (<a href="http://nodejs.org/docs/v0.5.0/api/index.html">Documentation</a>) |
123 |
| - </p> |
| 119 | + <p>2011.07.14 v0.5.1 (unstable) |
| 120 | + <ul class="release"> |
| 121 | + <li><a href="http://nodejs.org/dist/v0.5.1/node-v0.5.1.tar.gz"><code>node-v0.5.1.tar.gz</code> Source code</a> |
| 122 | + <li><a href="http://nodejs.org/dist/v0.5.1/node.exe"><code>node.exe</code> Windows executable</a> |
| 123 | + <li><a href="http://nodejs.org/docs/v0.5.1/api/index.html">Documentation</a> |
| 124 | + </ul> |
124 | 125 |
|
125 | 126 |
|
126 | 127 | <p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
|
@@ -193,13 +194,8 @@ <h2 id="about">About</h2>
|
193 | 194 | But what about multiple-processor concurrency? Aren't threads
|
194 | 195 | necessary to scale programs to multi-core computers?
|
195 | 196 | </i>
|
196 |
| - Processes are necessary to scale to multi-core computers, not |
197 |
| - memory-sharing threads. The fundamentals of scalable systems are |
198 |
| - fast networking and non-blocking design—the rest is message |
199 |
| - passing. In future versions, Node will be able to fork new |
200 |
| - processes (using the <a |
201 |
| - href="http://www.whatwg.org/specs/web-workers/current-work/"> Web |
202 |
| - Workers API </a>) which fits well into the current design. |
| 197 | + You can start new processes via <code>child_process.fork()</code> |
| 198 | + these other processes will be scheduled in parallel. |
203 | 199 | </p>
|
204 | 200 |
|
205 | 201 | <p>
|
|
0 commit comments