我是* Hapi *框架的新手。在开发过程中,每当我对代码进行任何更改时,我都必须重新启动hapi服务器。
对于视图部分,我可以添加一个选项{isCached: false}
,使视图每次都读取最新的html文件。 但是,是否有一个简单的设置可以让它在更改时自动重新加载代码?
更新
感谢 dylants '建议,Nodemon运行良好。
但是,在我的应用程序中有一个selenium-standalone子进程,每当nodemon
重新启动时,它都会生成错误日志。 ...Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again...
我尝过https://github.com/remy/nodemon#controlling-shutdown-of-your-script,但没有用。