一. xp 搭建nodejs环境
安装mysql时遇到找不到mysql module的情况:
解决方法:在npm install mysql是的路径必须是当前工程目录或是node.exe目录,要不然就找不到module。
二.linux 搭建nodejs
wget
tar -zxvf node-v0.6.4.tar.gz
cd node-v0.6.4
./configure
make && make install
node -v
创建 /var/www/html/nodejs/hello.js
var http = require("http");http.createServer(function(req,res){ res.writeHead(200,{'Content-Type':'text/plain'}); res.end('Hello Node.js\n');}).listen(1337,'192.168.1.128');console.log("server listen at 1337");
http://xxxx:1337