vscode调试npm命令

起因

项目的开发中需要使用到大量的npm的命令,希望是能够进行方便的调试。

命令

{
 "scripts": {
    "create": "node ./createFile.js",
  },
 ...
}

设置方式

// 利用runtimeExcutable
 {
      "name":"npm run create",
      "type":"node",
      "request":"launch",
      "runtimeExecutable": "npm",
      "runtimeArgs": ["run", "create"]
 }
// 利用command 
{
      "command": "npm run create",
      "name": "Run npm create",
      "request": "launch",
      "type": "node-terminal"
}

效果

image.png

你可能感兴趣的:(vscode调试npm命令)