日期:2014-05-16 浏览次数:20412 次
本文是对nodejs0.8.8版本的api开发手册解读.nodejs网址
概览(synopsis)
一个简单的用node写的 web server的例子,用来输出"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的文件里,然后用下面的代码来执行它.windows下需要用cmd进入example.js所在目录执行
> node example.js
Server running at http://127.0.0.1:8124/
这个文档里的例子都可以这样简单的运行起来.
全局对象(global objects)
这些对象在所有的模块中可见,其中一些对象不是真正的全局对象scope,而是模块scope,这些对象会被标注出来.
global:对象类型,全局命名空间对象