我的.env
文件中有我的heroku配置变量,所以我必须使用 foreman 在本地运行我的应用程序。我需要使用 node-inspector 进行调试,我不想手动重启我的应用程序,所以我也想使用 nodemon 。
如何一起使用nodemon,node-inspector和foreman?
答案 0 :(得分:1)
这很简单,只需在一个命令中将它们链接在一起。
# 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"
你已经完成了!