Start nodemon with inspector 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"
}
Reference - https://nodejs.org/en/docs/guides/debugging-getting-started/
Shared with from Codever.land. 👉 Use the Copy to mine functionality to copy this snippet to your own personal collection and easy manage your code snippets.