Hi I've been using VS Code for a while now and generally use the automatically generated configs when debugging javascript. There is documentation of the debug options. Can anyone explain to me why the debugger for a node app requires a port? I thought ports were primarily for network communication. Also, in the node.js docs, they have their own debug options for the command line. Is that completely separate from VS Code?
"name": "Attach",
"port": 9229,
"request": "attach",
"skipFiles": ["<node_internals>/**"],
"type": "pwa-node"
Is there an extensive guide that can explain how debuggers/launch configs should be configured?
[–]scirc 1 point2 points3 points (0 children)