我安装了最新的express-coffee并安装了node-config。我创建了一个简单的 src/config/default.yaml
Database:
db_host: localhost
db_name: test
在我的 src/models/index.coffee
config = require('config').Database
console.log "host: #{config.db_host}"
但是,当尝试启动服务器时,cake dev
甚至cake build && node app
出现以下错误:
Cannot write runtime.json file Error: ENOENT, no such file or directory
尝试在此处和 Google 上搜索该问题,但找不到任何内容。即使只是 ENOENT 或 node-config runtime.json 的少数点击也没有帮助。以前有其他人遇到过这个问题吗?