is it possible to use the vscode debugger in serve...
# general
g
is it possible to use the vscode debugger in serverless stack?
l
Hello everyone! I asked the same question on Twitter. I was wondering if it's possible to launch the dev mode with --inspect. For example, I launch with debugging port open like this:
Copy code
node --inspect myNodeServer.js
The
--inspect
gives the ability to attach an external debugger to the running process. This is the usual output:
Debugger listening on <ws://127.0.0.1:9229/cba6c30e-31d3-4175-a57e-85e57ce93d0e>
I tried
npx sst start --inspect
but that was just a guess lol 😃