在vscode

时间:2017-03-07 16:25:28

标签: node.js visual-studio-code grommet

Grommet和vscode。试图让他们一起玩。我可以让Express和vscode按照here所示工作。我想让grommet-cli sample app同样工作。 Express有一个命令可以启动:“npm start”,其中grommet-cli有两个:“npm run dev-server”和“npm run dev”(不知道如何在vscode中启动它们。我想我可能需要{{3 }}?)。如何设置launch.json来调试示例应用程序?我希望能够在IE / Edge中进行调试。我在Chrome中使用Debugger for Chrome扩展程序取得了一些成功。

这是我目前的launch.json:

{
"version": "0.2.0",
"configurations": [
    {
        "type": "chrome",
        "request": "launch",
        "name": "Launch Chrome against localhost",
        "url": "http://localhost:3000",
        "webRoot": "${workspaceRoot}"
    },
    {
        "type": "chrome",
        "request": "attach",
        "name": "Attach to Chrome",
        "port": 9222,
        "webRoot": "${workspaceRoot}"
    }
]

}

1 个答案:

答案 0 :(得分:1)

This似乎可以解决此问题。希望它已被添加到VS的最新版本中。

"compounds": [
    {
        "name": "Node+Browser",
        "configurations": [ "Server", "Browser" ]
    }
],
"configurations" [
    {
        "name": "Browser",
        "type": "chrome",
        //...
    },
    {
        "name": "Server",
        "type": "node",
        //...
    }
]