node-checkenv
node-checkenv copied to clipboard
Check your current environmental variables against a project config file
Typedefs
Any chance we could get a types declaration file? Couldn't find a @types/checkenv, but it'd be awesome if there was a way to use this package in typescript! EDIT: my...
FIx Typo
This small landmine caught me when I set a env-var default to `false`, rather than `"false"`, for a flag. This would also cause issues for `0` or other falsey values.
[{name: xxx, options: xxx}] is tedious, how about supporting: [[name, options], [name, option1, option2, ....]]
see another project https://www.npmjs.com/package/check-env it support a useful usage: ``` { "prestart": "check-env AWS_KEY MONGO_URL", "start": "node index.js" } ``` this way we can extract out the logic from the...
I was looking into [Deploy to heroku](https://devcenter.heroku.com/articles/heroku-button) instructions and noticed they have a [similar schema](https://devcenter.heroku.com/articles/app-json-schema) for their env vars. Have you considered using that? Not sure how standard their schema...