Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback

denv

A module similar to dotenv, but for Deno

Usage

You can directly import it, and it will use the .env file of the directory it is imported in:

import "https://deno.land/x/denv/mod.ts";

else you can import the load function, where you can pass the path to the .env file:

import {load} from "https://deno.land/x/denv/mod.ts";
await load("myenvfile");

Env File Rules

The rules are the same as dotenv, except double quoted values expand new lines is not implemented