UNPKG

confme

Version:

Opinionated config library that allows you to have complex config and behaves according to Twelve Factor App rules

12 lines (9 loc) 207 B
const confme = require("../../src/confme"); function main() { const config = confme( __dirname + "/config.json", __dirname + "/config-schema.json" ); console.log("CONFIG", config); } main();