perfect-env
v1.0.1
Published
Undefined? Who?
Readme
perfect.env
Drop-in replacement for process.env that throws an Error if an unset environment variable is accessed.
const perfect = require('perfect-env')
const { PORT, CONSUMER_KEY, CONSUMER_SECRET, APP_URL } = perfect.envinstead of
const { PORT, CONSUMER_KEY, CONSUMER_SECRET, APP_URL } = process.envException example:
Error: 'PORT' environment variable is not set.
at Object.get (your-project-path/node_modules/perfect-env/index.js:6:15)
at Object.<anonymous> (your-project-path/index.js:3:9)License
MIT © David da Silva
