nodejs初探

引用下:
NodeJS-基于V8引擎的,使用事件驱动模型而不是复杂的多线程来获得可伸缩性,类似Ruby的EventMachine和Python的Twisted的轻量级WEBServer。

笔者的环境:
Unbuntu 10.0.4
nodejs0.3.2

./configure --prefix=/home/allen/nodejs --without-ssl
用来检测你的安装平台的目标特征的。

错误解决:
1、需要安装g++
sudo apt-get install make gcc g++
安装g++
2、--without-ssl

make
用来编译的,它从Makefile中读取指令,然后编译。

make install
是用来安装的,它也从Makefile中读取指令,安装到指定的位置。

错误解决:
1、Permission denied错误
sudu su 切换到root用户
exit退出

设置文件为可执行的 chmod +x example.js
   #!/home/allen/nodejs/bin/node
   var sys = require("../../node-v0.3.2/lib/sys.js"), http = require("../../node-v0.3.2/lib/http.js");
   http.createServer(function (req, res) {
        setTimeout(function () {
                res.writeHead(200, {"Content-Type": "text/plain"});
                res.write("Hello,This is ALLEN");
                res.finish();
            }, 2000);
       }).listen(8000);
   sys.puts("Server running at http://127.0.0.1:8000/");

浏览器访问http://127.0.0.1:8000/就看到效果了

你可能感兴趣的:(多线程,python,浏览器,gcc,Ruby)