├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── MIT-LICENSE ├── Makefile ├── README.md ├── TODO ├── examples ├── .env ├── .env2 └── basic.js ├── index.js ├── lib └── index.js ├── package.json └── test ├── fixtures ├── .env.0 ├── .env.1 ├── .env.2 ├── .env.3 ├── .env.4 ├── .env.5 ├── .env.exports.0 ├── .env.exports.1 ├── .env.exports.2 ├── .env.exports.3 └── .env.exports.4 ├── helper.js ├── index.js └── mocha.opts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/.travis.yml -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/TODO -------------------------------------------------------------------------------- /examples/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/examples/.env -------------------------------------------------------------------------------- /examples/.env2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/examples/.env2 -------------------------------------------------------------------------------- /examples/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/examples/basic.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/.env.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.0 -------------------------------------------------------------------------------- /test/fixtures/.env.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.1 -------------------------------------------------------------------------------- /test/fixtures/.env.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.2 -------------------------------------------------------------------------------- /test/fixtures/.env.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.3 -------------------------------------------------------------------------------- /test/fixtures/.env.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.4 -------------------------------------------------------------------------------- /test/fixtures/.env.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.5 -------------------------------------------------------------------------------- /test/fixtures/.env.exports.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.exports.0 -------------------------------------------------------------------------------- /test/fixtures/.env.exports.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.exports.1 -------------------------------------------------------------------------------- /test/fixtures/.env.exports.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.exports.2 -------------------------------------------------------------------------------- /test/fixtures/.env.exports.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.exports.3 -------------------------------------------------------------------------------- /test/fixtures/.env.exports.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/fixtures/.env.exports.4 -------------------------------------------------------------------------------- /test/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/helper.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimen/node-env-file/HEAD/test/mocha.opts --------------------------------------------------------------------------------