We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When nodemon restarts the app it crashes: Starting inspector on 0.0.0.0:9229 failed: address already in use
Starting inspector on 0.0.0.0:9229 failed: address already in use
I tried upgrading to newer version of nodemon, not sure what else to do here other than remove the inspect flag. Any help is appreciated!
inspect
The text was updated successfully, but these errors were encountered:
Search the nodemon issues. They talk about that problem. I sometimes get it and don't have a fix.
Sorry, something went wrong.
@vettloffah
Hi, did you find a fix ?
I have the same issue, each time nodemon restarts, dev env can not start. address already in use
update nodemon to v2.0.4 fixed the issue..
also changed docker-compose command like:
command: ../node_modules/.bin/nodemon
and added nodemon.json with this line, moving inspect to nodemon.json, also I' m using typescript
"exec": "node --inspect=0.0.0.0:9229 -r ts-node/register ./src/server.ts"
No branches or pull requests
When nodemon restarts the app it crashes:
Starting inspector on 0.0.0.0:9229 failed: address already in use
I tried upgrading to newer version of nodemon, not sure what else to do here other than remove the
inspect
flag. Any help is appreciated!The text was updated successfully, but these errors were encountered: