Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upProblem with node-debug #81
Comments
This comment has been minimized.
This comment has been minimized.
june07
commented
May 25, 2018
|
Use node --inspect and https://june07.com/nim |
This comment has been minimized.
This comment has been minimized.
|
Thank you. It worked. I wrote it up here. http://scripting.com/2018/05/25/133439.html Dave |
scripting
closed this
May 25, 2018
This comment has been minimized.
This comment has been minimized.
|
Follow-up question. I want to set a breakpoint when the program starts up. I tried It's made it much more fun to work on server stuff, btw. I can really get in there and see what's happening. It's not a chore anymore. ;-) |
This comment has been minimized.
This comment has been minimized.
june07
commented
Jun 7, 2018
|
Depending on the node version, you may have to use --inspect with
--debug-brk... Which by the way is deprecated in newer versions of Node.js.
See (among many other places)
Microsoft/vscode#32529
for more info about it.
…On Thu, Jun 7, 2018, 8:33 AM Dave Winer ***@***.***> wrote:
Follow-up question.
I want to set a breakpoint when the program starts up.
I tried node --inspect-brk test.js, but it says it's a bad option.
It's made it much more fun to work on server stuff, btw. I can really get
in there and see what's happening. It's not a chore anymore. ;-)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#81 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AK099msj2LR-PH_9JzKJf_hMg_ULIppsks5t6UfJgaJpZM4UMZzA>
.
|
This comment has been minimized.
This comment has been minimized.
|
Thanks -- this worked for me.
Dave |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
scripting commentedMay 24, 2018
Here's a quick video that demonstrates a problem I have with node-debug.
https://youtu.be/NjXz1apuG2o
Any help much appreciated! :-)