close
Skip to main content
This release is versions behind 0.225.7 — the latest version of @std/dotenv.

@std/dotenv@0.225.1
Built and signed on GitHub Actions

Works with
This package works with DenoIt is unknown whether this package works with Bun
This package works with Deno
It is unknown whether this package works with Bun
JSR Score94%
Downloads17,602/wk
Published2 years ago (0.225.1)

UNSTABLE: Parsing and loading environment variables from a `.env` file

Functions

f
load(options?: LoadOptions): Promise<Record<string, string>>

Load environment variables from a .env file. Loaded variables are accessible in a configuration object returned by the load() function, as well as optionally exporting them to the process environment using the export option.

f
loadSync(options?: LoadOptions): Record<string, string>

Works identically to load, but synchronously.

f
parse(text: string): Record<string, string>

Parse .env file output in an object.

f
stringify(object: Record<string, string>): string

Stringify an object into a valid .env file format.

Interfaces

I

Options for load and loadSync.

  • envPath: string | null

    Optional path to .env file. To prevent the default value from being used, set to null.

  • export: boolean

    Set to true to export all .env variables to the current processes environment. Variables are then accessible via Deno.env.get(<key>).

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@std/dotenv

Import symbol

import * as mod from "@std/dotenv";
or

Import directly with a jsr specifier

import * as mod from "jsr:@std/dotenv";