Skip to content

Instantly share code, notes, and snippets.

@rharriso
Created July 28, 2017 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rharriso/14c70303217b01743e919dfe69df6c71 to your computer and use it in GitHub Desktop.
Save rharriso/14c70303217b01743e919dfe69df6c71 to your computer and use it in GitHub Desktop.
VSCode Node debug config
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": true,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
},
{
"type": "node",
"protocol": "inspector",
"request": "attach",
"name": "Attach to Inspector",
"address": "localhost",
"port": 9229
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment