You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I am getting Starting inspector on 127.0.0.1:9229 failed: address already in use when using
this command node --inspect app.js
I can by pass that by doing node --inspect --inspect-port=0 mentioned in this ticket nodejs/node#9435
but by passing it this way ended up debugging the wrong process becuse i see stuff about grunt but not the main sails lift messages...
Does anyone have similar issue with debug command? the regular sails debug just crash with below output and then back to an active terminal.
info: Running app in debug mode...
info: You probably want to install / run node-inspector to help with debugging!
info: https://github.com/node-inspector/node-inspector
info: ( to exit, type <CTRL>+<C> )
(node:55030) [DEP0062] DeprecationWarning: `node --debug` and `node --debug-brk` are invalid. Please use `node --inspect` or `node --inspect-brk` instead.
The text was updated successfully, but these errors were encountered:
@andrewvmail This is patched by #4115. We'll get a new release of v0.12.x out soon; in the meantime you can apply that patch yourself pretty easily or else just turn Grunt off when you're running inspect:
Sails version: 0.12.13
Node version: v8.2.1
NPM version: 5.2.0
DB adapter name: N/A
DB adapter version: N/A
Operating system: OSX 10.12.6
Hello, I am getting
Starting inspector on 127.0.0.1:9229 failed: address already in use
when usingthis command
node --inspect app.js
I can by pass that by doing
node --inspect --inspect-port=0
mentioned in this ticket nodejs/node#9435but by passing it this way ended up debugging the wrong process becuse i see stuff about grunt but not the main sails lift messages...
Does anyone have similar issue with debug command? the regular sails debug just crash with below output and then back to an active terminal.
The text was updated successfully, but these errors were encountered: