rf-db-settings
v1.0.1
Published
Rapifacture database module. Provides DB settings.
Downloads
235
Keywords
Readme
rf-db
Get Settings from Rapifacture database module with error handling. Try to use 'rf-log'
installation
npm install rf-db-settings
var getDbSettings = require('rf-db-settings');
getDbSettings({
settings: [
{
name: 'globalSettings',
query: 'global'
},
{
name: 'sessionSecret',
query: 'sessionSecret',
optional: true // this will throw a warning, but no error
},
{
name: 'appSettings',
query: config.app.name
},
{
name: 'mailSettings',
query: 'mail'
}
]
mergeDbSettingsInto: config // optional
}, function(settings){ // callback after fetch
// settings looks like:
// {
// globalSettings: Object,
// appSettings: Object,
// mailSettings: Object
// }
});