node.js helloworld
时间:2011-01-11 来源:imyuan
require('http').createServer( function(req,res){ res.writeHeader({'Content-Type':'text/plain'}); res.end('helloWorld'); }).listen(8000);
只用一行代码完成了helloworld,用到了require导入模块,用到了http模块的createServer创建Server,以一个server端脚本函数为参数,创建完成之后开始侦听8000端口。
创建Server时传的参数作为回调函数,有request,response两个参数,分别为http.ServerRequest,http.ServerResponse类型。
在这段脚本里设置内容类型,然后输出文本,并结束response流。
这时已经可以在"http://localhost:8000/"访问到了.
相关阅读 更多 +