首先,我全局安装nodemon:
npm install -g nodemon
然后我尝试使用以下命令启动我的应用程序:
nodemon app.iced
我得到这样的错误:“SyntaxError:Unexpected token ILLEGAL”。但是,我可以在没有任何错误的情况下运行没有nodemon的应用程序:
iced --nodejs --debug app.iced
问题是什么?
答案 0 :(得分:4)
尝试使用以下方式启动您的应用:
nodemon -x iced app.iced
此外,如果您使用nodemon
,您可能对监控和重新启动代码库更改感兴趣。因此,如果您想在.iced
文件更改时自动重新启动,则可以执行以下操作:
nodemon -x iced app.iced -e ".iced"
有关nodemon
参数的更多有用信息,请使用nodemon --help
。