我正在尝试使用flatiron构建一个小框架。我想使用nconf加载我的所有配置文件,以便它们可以在我的应用程序中的任何位置使用。在我的根目录中,我有我的app.js,我想从config / bootstrap.js中提取配置数据。
配置/配置/ JS
module.exports =
{ 'app' :
{ "host" : "localhost"
, "port" : process.env.port || 3000
}
}
bootstrap.js:
var nconf = require('nconf')
// database config
, dsource = require('./datasource')
// general or user config
, config = require('./config')
// allow overrides
nconf.overrides({
'always': 'be this value'
});
// add env vars and args
nconf.env().argv();
// load in configs from the config files
var defaults = {}
// so we can iterate over each config file
, confs = [dsource, config]
// for every config file
confs.forEach(function(conf)
{
// get each key
for (var key in conf)
{
// and add it to the defaults object
defaults[key] = conf[key]
}
})
// save the defaults object
nconf.defaults(defaults)
// logging this here works and properly shows the port setting
console.log('app port : ' + nconf.get('app:port'))
module.exports = nconf
所以当控制台从文件中记录时。一切似乎都很好。但是当我尝试导出它,并从app.js作为conf.get('app:port')要求它时它不起作用。
app.js(只是来自'flatiron create app'的香草app.js)
var flatiron = require('flatiron')
, app = flatiron.app
, path = require('path')
, conf = require('./config/bootstrap')
app.config.file({ file: path.join(__dirname, 'config', 'config.json') });
app.use(flatiron.plugins.http);
app.router.get('/', function () {
this.res.json({ 'hello': 'world' })
});
// this doesnt work, conf
app.start(conf.get('app:port'));
那么我怎样才能让它正常工作,这样配置就可以在我的应用程序的任何地方使用。理想情况下,我希望能够从app.config
这是使用nconf的最佳方式吗?我似乎找不到很多例子。我看到的所有内容只是从实际的nconfig示例文件中提取配置信息。不是来自文件外部app.config
或者我没有正确使用它?有没有更好的方法来做到这一点。理想情况下,我想使用这个引导程序文件加载我的所有配置,以及资源/视图(RVP样式应用程序),所以它全部加载。
这是我对布局的一般想法,一个想法
|-- conf/
| |-- bootstrap.js
| |-- config.js
|-- resources
| |-- creature.js
|-- views/
|-- presenters/
|-- app.js
|-- package.json
答案 0 :(得分:1)
您可以在任何有权访问应用的地方使用您的配置:
app.config.get('google-maps-api-key')
如果你这样加载它:
app.config.file({ file: path.join(__dirname, 'config', 'config.json') })
答案 1 :(得分:0)
这是加载JSON配置的正确方法:
nconf.use('file', {
file: process.cwd() + '/config.ini'
, format: nconf.formats.json
});