Compiles environment vars into a predefined accessible object structure.
npm install node-env-objnode-env-obj is configured and creates a Singleton the first import.``js
// entry: ./index.js
const Config = require('node-env-obj')({
envPath: '../'
});
// any further files: ./folder/file.js
const Config = require('node-env-obj')();
``