DEV Community

Cover image for How to start nodemon with custom port
Adrian Matei for Codever

Posted on Edited on Originally published at codever.dev

How to start nodemon with custom port

Enable the inspector by using --inspect option and giving it a port number to listen on as in the following example (here 9230)

  "scripts" : {
    "start": "nodemon  --inspect=9230 ./bin/www"
  }
Enter fullscreen mode Exit fullscreen mode


Reference -

https://nodejs.org/en/docs/guides/debugging-getting-started/

Shared with ❤️ from Codever. Use 👉 copy to mine functionality to add it to your personal snippets collection.

Top comments (2)