Skip to content

Instantly share code, notes, and snippets.

@fenying
Created June 24, 2018 15:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fenying/1700b54f070f10ceb1fdf4864ef578f9 to your computer and use it in GitHub Desktop.
Save fenying/1700b54f070f10ceb1fdf4864ef578f9 to your computer and use it in GitHub Desktop.
Node.js Remote Debugging Configuration for VSCode
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "[Remote-Debug-Sample] Auto-Attach",
"remoteRoot": "/home/admin/node-projects/remote-debug",
"protocol": "inspector",
"address": "localhost",
"port": 10086,
"sourceMaps": true,
"localRoot": "${workspaceFolder}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment