安装Node.js
安装Node.js
下面分别介绍在Mac、Ubuntu、Centos及Windows下安装Node.js。Node.JS最新版本为:0.6.10
Mac
在Mac下,如果你喜欢用homebrew,那么只用一行就可以装好:
1brewinstallnode
否则,只能考虑手工安装了,步骤如下:
1.安装Xcode
2.安装git
3.运行下面的命令行编译node.js
2gitclonegit://github.com/joyent/node.git
3cdnode
4./configure
5make
6sudomakeinstall
Ubuntu
安装依赖包
1sudoapt-getinstallg++curllibssl-devapache2-utils
2sudoapt-getinstallgit-core
运行下面的命令行:
3gitclonegit://github.com/joyent/node.git
4cdnode
5./configure
6make
7sudomakeinstall
Windows
要安装最新的node-v0.6.10.msi,下载http://nodejs.org/dist/v0.6.10/node-v0.6.10.msi,然后直接运行,它会自动完成Node.JS的安装。然后在命令行可以直接运行Node.JS的程序。
CentOS
注:我执行了以下几步完成安装。
1)yuminstallgcc-c++openssl-devel
2)下载http://nodejs.org/dist/v0.6.10/node-v0.6.10.tar.gz
3)tarzvxfnode-v0.6.10.tar.gz
4)./configure
5)make
6)makeinstall
安装成功!
安装验证
写一段小程序例如hello_node.js来验证安装是否正确:
var http=require('http');
http.createServer(function(req,res){
res.writeHead(200, {'Content-Type':'text/plain'});
res.end('Hello Node.js');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/');
用node来运行这段代码
node hello_node.js
Server running at http://127.0.0.1:8124/
现在,用浏览器打开http://127.0.0.1:8124/,应该能够看到一条消息。
上一篇: 模块和包 1
下一篇: Node.js的安装