開發工具:html
我使用的開發工具是Mac版的WebStorm,這個工具支持Nodejs,只要按照以下步驟設置便可以支持node
一、WebStorm的開發界面,這個開發工具仍是很是好用的。web
二、WebStorm的Nodejs配置工具
三、開始運行了,看看效果開發工具
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/');