linux编译安装配置node.js
安装环境:
centos7.3 192.168.1.22
安装步骤:
1.下载源码
wget http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz
- 解压源码
tar zxvf node-v0.10.24.tar.gz
- 编译安装 指定路径
cd node-v0.10.24
./configure --prefix=/usr/local/node/0.10.24
make && make install
- 配置环境变量
vi /etc/profile
export NODE_HOME=/usr/local/node/0.10.24
export PATH=$NODE_HOME/bin:$PATH
source /etc/profile
验证安装是否成功
node -v
注:npm模块安装路径
/usr/local/node/0.10.24/lib/node_modules/
test 测试 创建应用– hello word
vi wanbo.js
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World
');
}).listen(8888);
console.log('Server running at http://127.0.0.1:8888/');
保存!
使用node命令执行代码:
node wanbo.js
Server running at http://127.0.0.1:8888/
windows 访问服务器地址+端口 192.168.1.22:8888