了不起的Node.js--之三

开发工具:

我使用的开发工具是Mac版的WebStorm,这个工具支持Nodejs,只要按照如下步骤设置即可以支持

 

1、WebStorm的开发界面,这个开发工具还是非常好用的。

2、WebStorm的Nodejs配置

3、开始运行了,看看效果

4、最简单的测试程序的源代码:

require('http').createServer(function(req, res){
    console.log(req.headers);
    res.writeHead(200, {'Content-Type': 'text/html'});
    res.write('Hello <b>World</b>.');

    setTimeout(function(){
        res.end('<br/><b>I am coming.</b>');
    }, 5000);
}).listen(3000);

console.log('Server running at http://127.0.0.1:3000/');

 

 

posted @ 2014-04-15 21:23  Adam.Zhao  阅读(274)  评论(0编辑  收藏  举报