NODE.JS玩玩

按一个网页的来,最好最后能到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玩玩

上一篇:毕业五年,从月薪3000到年薪百万,我掌握了哪些核心技能?(建议收藏)


下一篇:[转].NET程序破解仅需三步