我可以将 foxx 与咖啡脚本一起使用,但它不起作用。我有一个来自分步教程的 hello 示例应用程序。我替换app.js
为app.coffee
(编译后coffee -c app.coffee
与 相同app.js
)
在 manifest.json 我更改了 cotrollers 的扩展名
{
"name": "moje",
"version": "0.0.1",
"description": "Hello example.",
"author": "golf",
"controllers": {
"/": "app.coffee"
}
}
但它不工作并且服务器返回
{"error":true,"code":404,"errorNum":404,"errorMessage":"unknown path 'dev/moje/hello/world'"}
我究竟做错了什么?