"Node.js 是服务器端的 JavaScript 运行环境,它具有无阻塞(non-blocking)和事件驱动(event-driven)等的特色,Node.js 采用 V8 引擎,同样,Node.js 实现了类似 Apache 和 nginx 的web服务,让你可以通过它来搭建基于 JavaScript 的 Web App。"
大家要是用过Python的tornado,会发觉node.js和tornado真的有很多地方是相像的。。。 他的route,他的rule,他的模板。。。
node.js的发展太猛啦~ 看看他包的更新。
12345678910 var http = require("http");
function onRequest(request, response) {
console.log("Request received.");
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}
http.createServer(onRequest).listen(8888);
console.log("Server has started.");
~
测试服务器:
测试结果:
给大家搞的动画的流程
然后咱们来用用node.js的web框架。。。
Node.js 的详细介绍:请点这里
Node.js 的下载地址:请点这里
推荐阅读: