config-creator
v0.0.4
Published
Create configuration file from json schema and environment variables.
Downloads
1
Readme
Config-creator
Create configuration file from json schema and environment variables.
Example
const config = require('./config');
const schema = require('./schema');
const config_creator = require('config-creator');
const result_config = config_creator.parse(config, schema);
Creator.parse(config:Object, schema:Object, prefix:str) → Object
Synchronously create json from schema.