我有一个在 node 中开发的小型 web 服务,我想在 coffeescript 中编写一些文件,开始使用它。
我正在使用 nodemon 来运行应用程序,就像这样
nodemon app.js
我有以下文件结构
app.js 控制器/ ping.coffee test.js
在nodemon的主页上说它支持coffeescript,但是我更改了文件并且它不会重新加载。
然后我找到了这篇文章,所以我尝试了
$ coffee --watch --compile ./controllers/*.coffee
它工作正常,但如果我尝试
$ coffee --watch --compile ./*.coffee
File not found: ./*.coffee
所以看起来 watch 选项不是递归的。
知道如何让 nodemon 选择咖啡脚本文件更改,或者让咖啡编译器递归地选择文件吗?