0

我安装了最新的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 的少数点击也没有帮助。以前有其他人遇到过这个问题吗?

4

1 回答 1

0

原来问题出在 config/default.yaml 所在的位置。我不得不将它移动到应用程序的根目录。将其移至根目录 - config/default.yaml 修复了该问题。该错误消息对于弄清楚发生了什么并没有多大帮助。

于 2012-10-02T09:11:25.477 回答