This release is versions behind 0.225.7 — the latest version of @std/dotenv.
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Works with
•JSR Score94%•This package works with DenoIt is unknown whether this package works with Bun

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
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