如何让 node-inspector 与 foreman 和 nodemon 一起达到 运行?
How do I get node-inspector to run with foreman and nodemon?
我的 .env
文件中有我的 heroku 配置变量,所以我必须在本地使用 foreman 到 运行 我的应用程序。我需要使用 node-inspector 进行调试,我不想手动重启我的应用程序,所以我也想使用 nodemon .
如何同时使用nodemon、node-inspector和foreman?
真的很简单,只需在一个命令中将它们链接在一起即可。
# start node-inspector in the background
$ node-inspector &
# make nodemon execute foreman with debugging options enabled for app.js with
## either
$ nodemon --exec "foreman run node --debug-brk app.js"
## or
$ nodemon --exec "foreman run node --debug app.js"
大功告成!
我的 .env
文件中有我的 heroku 配置变量,所以我必须在本地使用 foreman 到 运行 我的应用程序。我需要使用 node-inspector 进行调试,我不想手动重启我的应用程序,所以我也想使用 nodemon .
如何同时使用nodemon、node-inspector和foreman?
真的很简单,只需在一个命令中将它们链接在一起即可。
# start node-inspector in the background
$ node-inspector &
# make nodemon execute foreman with debugging options enabled for app.js with
## either
$ nodemon --exec "foreman run node --debug-brk app.js"
## or
$ nodemon --exec "foreman run node --debug app.js"
大功告成!