1. ubuntu 安装 node.js
安装依赖包
>>sudo apt-getinstall g++ curl libssl-dev apache2-utils
>>sudo apt-getinstall git-core
获取node.js源文件并进行编译安装
>>git clone git://github.com/joyent/node.git
>>cd node
>>./configure
>>make
>>sudo make install
2. hello word编写 在任意文件夹下编写hello.js代码,如下
varhttp = require('http');
http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, "127.0.0.1");
console.log('Server running at http://127.0.0.1:1337/');
3. 运行
>>node hello.js
4. 浏览器运行
运行出现
hello World
5 安装只需要在终端写入一行代码:
curl http://npmjs.org/install.sh | sh
npm安装node扩展包同样是一行代码:
npm install <包名>//例:npm install express
参考
http://www.cnblogs.com/Darren_code/archive/2011/10/31/2207063.html