如何从Visual Studio Code运行我的电子项目

时间:2015-12-20 07:20:00

标签: javascript visual-studio-code electron

我是JavaScript新手。我想在Visual Studio Code中创建一个带有电子框架的应用程序。 我正在研究debian。电子模块安装在本地,我可以从命令行执行我的应用程序。但遗憾的是,我无法设置VS代码来运行它。我试过这个guide,但它并没有帮助我。 我有以下launch.json:

{
"version": "0.1.0",
// List of configurations. Add new configurations or edit existing ones.
// ONLY "node" and "mono" are supported, change "type" to switch.
"configurations": [
    {
        // Name of configuration; appears in the launch configuration drop down menu.
        "name": "Launch main.js",
        // Type of configuration. Possible values: "node", "mono".
        "type": "node",
        // Workspace relative or absolute path to the program.
        "program": "electron/main.js",
        // Automatically stop program after launch.
        "stopOnEntry": false,
        // Command line arguments passed to the program.
        "args": [],
        // Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace.
        "cwd": ".",
        // Workspace relative or absolute path to the runtime executable to be used. Default is the runtime executable on the PATH.
        "runtimeExecutable": "node_modules/electron-prebuilt/dist/electron",
        // Optional arguments passed to the runtime executable.
        "runtimeArgs": [],
        // Environment variables passed to the program.
        "env": {
            "NODE_ENV": "development"
        },
        // Use JavaScript source maps (if they exist).
        "sourceMaps": false,
        // If JavaScript source maps are enabled, the generated code is expected in this directory.
        "outDir": null
    },
    {
        "name": "Attach",
        "type": "node",
        // TCP/IP address. Default is "localhost".
        "address": "localhost",
        // Port to attach to.
        "port": 5858,
        "sourceMaps": false
    }
]

}

如果我尝试执行,但是出现一个空白终端并且VS代码表示" OpenDebug进程意外终止"。

更新

同时Visual Studio Code已得到很大改进。这里有一个很好的描述,应该如何为电子设置VS代码: http://electron.rocks/debugging-electron-in-vs-code/

1 个答案:

答案 0 :(得分:0)

当您像这样运行电子时,您需要将参数传递给包含您的应用程序的目录。可能还有其他一些问题,但我认为您需要将程序设置为本地目录而不是文件:

"program": ".",

然后代码应该调用电子脚本并将"."作为第一个参数传递给它。可能是电子也不支持调试选项,请尝试取消设置端口和地址属性。