chrome 调试Node.js代码
node --inspect app.js
添加--inspect
步骤
- 编写代码 app.js
var http = require('http')
var app = http.createServer(function(req,res){
})
app.listen(3000,function(){
})
- 使用命令
node --inspect app.js
- 浏览器查看
在chrome浏览器
中访问localhost:3000
,并打开开发者工具,会发现有一个node
图标,点击他就可以看到node的相关调试信息。
网友评论