Node.js是一款新兴的计算机编程语言,基于JavaScript语法,是一款轻量的编程语言。只需要简单几行代码即可创建http服务器如~
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');}).listen(8000, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8000/');
这是一本NodeJS新手入门教程,涵盖了使用NodeJS开发各种程序所必要的知识,请点击以下链接阅读: http://nqdeng.github.io/7-days-nodejs/
from https://github.com/nqdeng/7-days-nodejs