dotenv-autoload

Autoload dotenv through recursive finding.

Usage no npm install needed!

<script type="module">
  import dotenvAutoload from 'https://cdn.skypack.dev/dotenv-autoload';
</script>

README

dotenv-autoload npm version Build Status

Autoload dotenv through recursive finding.

Why?

  • Because I use dotenv a lot;
  • And because I have 2 configs.
- require('dotenv').load({ path: __dirname + '/../../.env' });
+ require('dotenv-autoload');

Nothing is bad about it. It just looks dull.

Getting Started

npm i dotenv dotenv-autoload --save-dev

Note: dotenv is a required dependency.

Usage

require('dotenv-autoload');

That's all you need to get it running.