码迷,mamicode.com
首页 > Web开发 > 详细

NODE.JS玩玩

时间:2015-10-09 22:50:37      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:

按一个网页的来,最好最后能到EXPRESS.JS。

http://www.nodebeginner.org/index-zh-cn.html

这样就能对比DJANGO,看看两者的WEB框架,加深认识。

var http = require("http");

function onRequest(request, response){
    console.log("Request recevied.");
    response.writeHead(200, {"Content-type":"text/plain"});
    response.write("Hello, World.");
    response.end();
}

http.createServer(onRequest).listen(8888);
console.log("Server is listen at 8888....");

技术分享

 

NODE.JS玩玩

标签:

原文地址:http://www.cnblogs.com/aguncn/p/4865214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!