码迷,mamicode.com
首页 > Web开发 > 详细

electron node.js 在 vscode 设置 调试 Debug

时间:2019-12-07 14:30:40      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:star   pre   debugging   选择   file   vsc   exec   https   std   

在当前工程下,添加一个 .vscode/launch.json 文件

 

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "cwd": "${workspaceRoot}",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
        "windows": {
          "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd"
        },
        "args" : ["."],
        "outputCapture": "std"
        }
    ]
}

或者使用快捷键F5,然后选择Node.js,会自动生成该文件
接下来,就可以点击菜单Debug -> Start Debugging,也可以直接按快捷键F5,启动程序

 技术图片

 

electron node.js 在 vscode 设置 调试 Debug

标签:star   pre   debugging   选择   file   vsc   exec   https   std   

原文地址:https://www.cnblogs.com/abc789/p/12001513.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!