Skip to content

Latest commit

 

History

32 提交

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

仓库 files navigation

envapi

An API to interact with environment files

Install

npm install envapi

Usage

import { parse, stringify, config, load, loadSafe } from 'envapi'

const input = `A=A\nFOO=BAR`
const env = parse(input) // { A: 'A', FOO: 'BAR' }
const output = stringify(env) // A=A\nFOO=BAR

parse()

Parse a dotenv string into an object.

const raw = `
A=A
FOO=BAR #comment`

const env = parse(raw) // { A: 'A', FOO: 'BAR' }

stringify()

Stringify an object into a dotenv string.

const env = { A: 'A', FOO: 'BAR' }
const raw = stringify(env) // 'A=A\nFOO=BAR'

load()

Read a dotenv file(s) and parse it into an object. loadSafe() suppresses ENOENT errors.

await fs.writeFile('.env1', 'FOO=BAR')
await fs.writeFile('.env2', 'BAZ=QUX')

const env = load('.env1', '.env2')      // { FOO: 'BAR', BAZ: 'QUX' }
const _env = loadSafe('.env.notexists') // {}

config()

Load a dotenv file into process.env.

config('.env1')
process.env.FOO // BAR

License

MIT

关于

An API to interact with environment files

Topics

Resources

Stars

10 stars

关注者

1 watching

复刻s

发布

Used by

贡献者

Languages