我想使用 nconf 模块根据策略从文件中检索配置数据,并将 JSON 配置文件中的属性导出为模块,如下所示:
import * as config from 'ConfigData'
console.log(config.MyProperty)
ConfigData 模块只是包装 nconf 定义配置文件的命名方案的策略以及加载文件的顺序。
var myconfig = new nconf.Provider({
env: true,
argv: true,
stores: [
{ type: 'file', file: path.join(__dirname, 'config.json')},
{ type: 'file', file: path.join(__dirname, 'default-config.json')}
]
});
如何导出 JSON 文件中的配置属性以及客户端代码如何使用它?