dotenv-export

Sourcing .env into your shell.

Usage no npm install needed!

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

README

dotenv-export

Source & export .env into your shell. Adds export statements to each line of a dotenv .env file, for defining any variables therein in your shell.

Install

npm i -g dotenv-export

Use

source <(dotenv-export)

Or you can use a custom file name instead of the default .env, e.g., .env.test:

source <(dotenv-export .env.test)