Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 298 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 298 Bytes

loadenv

Description

Reads environment files and envs from current execution, so you can have .env.default files and change the same envs on production.

How it works:

import { load } from 'https://deno.land/x/loadenv';
await load();

// Enjoy your envs with Deno.env.get('...')