Hello, world! (Node.js)

创建app.js文件:

var http = require('http');
http.createServer(function (req, resp) {
resp.writeHead(200, {'Content-Type': 'text/plain'});
resp.end('Hello, World!\n');
}).listen(8124, '127.0.0.1');
console.log('Server running at http://127.0.0.1:8124');

运行:

$ node app.js
Server running at http://127.0.0.1:8124

打开浏览器:




posted @ 2011-09-24 21:50  Sean Lv  阅读(600)  评论(0编辑  收藏  举报