The rebar build tool seems pretty cool, but is there a way to recompile AND reload files into a currently running node with it?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
I don't see a need to bring rebar into it.
I use reloader.erl from the Mochiweb project. Just build this module along with the rest of your program and call reloader:start()
early in your app's initialization sequence.
After that call, any time a module in your program changes on disk, the reloader will replace the running copy automatically.