概要
概要
这是一个用Node编写的web服务器,监听并回应“Hello World”。
var http = require('http'); http.createServer(function (request, response) { response.writeHead(200, {'Content-Type': 'text/plain'}); response.end('Hello World\n'); }).listen(8124); console.log('Server running at http://127.0.0.1:8124/');
将这些代码保存为example.js文件,并使用node程序执行来启动服务器。
> node example.js Server running at http://127.0.0.1:8124/
该文档中所有的例子都可以用同样的方式运行。