美文网首页
chrome 调试Node.js代码

chrome 调试Node.js代码

作者: 刘昊2018 | 来源:发表于2018-03-20 09:44 被阅读33次

    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的相关调试信息。

    相关文章

      网友评论

          本文标题:chrome 调试Node.js代码

          本文链接:https://www.haomeiwen.com/subject/tzrvqftx.html