Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created September 13, 2018 06:01
Show Gist options
  • Save tkssharma/0b736b3e8f553c8758d9ff877cf0375f to your computer and use it in GitHub Desktop.
Save tkssharma/0b736b3e8f553c8758d9ff877cf0375f to your computer and use it in GitHub Desktop.
{
// Use IntelliSense to learn about possible Node.js debug attributes.
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"runtimeExecutable":"node --inspect",
"cwd": "${workspaceRoot}",
"protocol": "auto",
"program": "${workspaceRoot}/app/server.js"
},
{
"type": "node",
"request": "attach",
"name": "Node: Nodemon",
"restart": true,
"protocol": "inspector",
"address": "127.0.0.1",
"port": 9229,
"localRoot": "${workspaceRoot}/",
"remoteRoot": "/usr/src/app/"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment