這架構得以讓Node.js 在許多的網路應用程式上得到很好的執行效率
編譯與安裝Node.js
Building and Installing Node.js
查看Node.js版本
~$ node -v
v0.4.5
測試Node
~$ node
> 1 + 2
3
> function add(x, y) { return x+y; }
> add(1, 2)
3
> process.pid
16710
> process
NPM是一個node程式庫的管理程式
安裝NPM
~$ curl http://npmjs.org/install.sh | sudo sh
See Also
http://nodejs.org
npm is a package manager for node
Projects, Applications, and Companies Using Node
Metamarkets Blog » Node.js and the Javascript Age
Is node.js best for Comet?
Fred's Blog - Never Stop Reasearching New Goods