configuration-station
v0.0.10
Published
a super simple wrapper for configstore that includes user prompting of said values in inquirer. so simply and easy i'm sure i fucked something up
Downloads
30
Readme
CONFIGURATION-STATION
a lazily-made prompt-based "front-end" for configstore, so cli users don't have to screw around with .env or whatever
Example
const test = async () => {
let { set, get, ask, getAll, askAll } = confomobile({
appName: "myapp",
config: {
api_key: "string",
api_secret: "password",
dads: "number",
}
})
// await askAll()
console.log(await getAll())
}
test()