首页 > Web开发 > 详细

node.js 调试 eggs launch.json配置信息

时间:2018-10-21 23:36:59      阅读:192      评论:0      收藏:0      [点我收藏+]
{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "调试",
            "type": "node",
            "request": "launch",
            "cwd": "${workspaceRoot}",//这里是文件位置
            "runtimeExecutable": "npm",
            "windows": { "runtimeExecutable": "npm.cmd" },
            "runtimeArgs": [ "run", "debug" ],
            "console": "integratedTerminal",
            "protocol": "auto",
            "restart": true,
            "port": 9999
        }
    ]
}

  

node.js 调试 eggs launch.json配置信息

原文:https://www.cnblogs.com/maomingchao/p/9827641.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!