Skip to content

Commit

Permalink
feat: expose dotenv API (#1032)
Browse files Browse the repository at this point in the history
* feat: handle multilines in env files

continues #974

* fix: check donenv names

* fix: handle dotenv comments

* fix: handle tabs in dotenvs

* fix: handle backtick in dotenv

* chore: parseDotenv tweak ups

* chore: shrink a few bytes

* chore: dotenv parse imprs

* chore: move custom dotenv parser to external pkg

* chore: linting

* chore: rebase

* feat: reexport `envapi`
  • Loading branch information
antongolub authored Dec 30, 2024
1 parent f1ca807 commit 109205b
Show file tree
Hide file tree
Showing 13 changed files with 48 additions and 57 deletions.
6 changes: 3 additions & 3 deletions .size-limit.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{
"name": "zx/index",
"path": "build/*.{js,cjs}",
"limit": "805 kB",
"limit": "806 kB",
"brotli": false,
"gzip": false
},
Expand All @@ -23,14 +23,14 @@
{
"name": "vendor",
"path": "build/vendor-*",
"limit": "761 kB",
"limit": "763 kB",
"brotli": false,
"gzip": false
},
{
"name": "all",
"path": "build/*",
"limit": "842 kB",
"limit": "844 kB",
"brotli": false,
"gzip": false
}
Expand Down
3 changes: 2 additions & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,8 @@ console.log(YAML.parse('foo: bar').foo)
```

## dotenv
[dotenv](https://www.npmjs.com/package/dotenv)-like environment variables loading API
The [envapi](https://www.npmjs.com/package/envapi) package.
An API to interact with environment vars in [dotenv](https://www.npmjs.com/package/dotenv) format.

```js
// parse
Expand Down
8 changes: 8 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
"create-require": "^1.1.1",
"depseek": "^0.4.1",
"dts-bundle-generator": "^9.5.1",
"envapi": "^0.1.0",
"esbuild": "^0.24.2",
"esbuild-node-externals": "^1.16.0",
"esbuild-plugin-entry-chunks": "^0.1.15",
Expand Down
1 change: 1 addition & 0 deletions scripts/build-dts.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const entries = [
// '@webpod/ps',
'@webpod/ingrid',
'depseek',
'envapi',
], // args['external-inlines'],
},
output,
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-tests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const modules = [
['core', core],
['cli', cli],
['index', index],
['vendor', vendor, ['chalk', 'depseek', 'fs', 'glob', 'minimist', 'ps', 'which', 'YAML',]],
['vendor', vendor, ['chalk', 'depseek', 'dotenv', 'fs', 'glob', 'minimist', 'ps', 'which', 'YAML',]],
]
const root = path.resolve(new URL(import.meta.url).pathname, '../..')
const filePath = path.resolve(root, `test/export.test.js`)
Expand Down
44 changes: 0 additions & 44 deletions src/goods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,47 +219,3 @@ export async function spinner<T>(
}
})
}

/**
* Read env files and collects it into environment variables
*/
export const dotenv = (() => {
const parse = (content: string | Buffer): NodeJS.ProcessEnv =>
content
.toString()
.split(/\r?\n/)
.reduce<NodeJS.ProcessEnv>((r, line) => {
if (line.startsWith('export ')) line = line.slice(7)
const i = line.indexOf('=')
const k = line.slice(0, i).trim()
const v = line.slice(i + 1).trim()
if (k && v) r[k] = v
return r
}, {})

const _load = (
read: (file: string) => string,
...files: string[]
): NodeJS.ProcessEnv =>
files
.reverse()
.reduce((m, f) => Object.assign(m, parse(read(path.resolve(f)))), {})
const load = (...files: string[]): NodeJS.ProcessEnv =>
_load((file) => fs.readFileSync(file, 'utf8'), ...files)
const loadSafe = (...files: string[]): NodeJS.ProcessEnv =>
_load(
(file: string): string =>
fs.existsSync(file) ? fs.readFileSync(file, 'utf8') : '',
...files
)

const config = (def = '.env', ...files: string[]): NodeJS.ProcessEnv =>
Object.assign(process.env, loadSafe(def, ...files))

return {
parse,
load,
loadSafe,
config,
}
})()
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export * from './goods.js'
export {
minimist,
chalk,
dotenv,
fs,
which,
YAML,
Expand Down
1 change: 1 addition & 0 deletions src/vendor-extra.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,4 @@ export const fs: typeof import('fs-extra') = _fs

export { depseekSync as depseek } from 'depseek'
export { default as minimist } from 'minimist'
export { default as dotenv } from 'envapi'
2 changes: 1 addition & 1 deletion test/cli.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ describe('cli', () => {
assert.ok(p.stderr.endsWith(cwd + '\n'))
})

test('supports `--env` options with file', async () => {
test('supports `--env` option', async () => {
const env = tmpfile(
'.env',
`FOO=BAR
Expand Down
7 changes: 7 additions & 0 deletions test/export.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ describe('index', () => {
assert.equal(typeof index.dotenv.load, 'function', 'index.dotenv.load')
assert.equal(typeof index.dotenv.loadSafe, 'function', 'index.dotenv.loadSafe')
assert.equal(typeof index.dotenv.parse, 'function', 'index.dotenv.parse')
assert.equal(typeof index.dotenv.stringify, 'function', 'index.dotenv.stringify')
assert.equal(typeof index.echo, 'function', 'index.echo')
assert.equal(typeof index.expBackoff, 'function', 'index.expBackoff')
assert.equal(typeof index.fetch, 'function', 'index.fetch')
Expand Down Expand Up @@ -420,6 +421,12 @@ describe('vendor', () => {
assert.equal(typeof vendor.chalk, 'function', 'vendor.chalk')
assert.equal(typeof vendor.chalk.level, 'number', 'vendor.chalk.level')
assert.equal(typeof vendor.depseek, 'function', 'vendor.depseek')
assert.equal(typeof vendor.dotenv, 'object', 'vendor.dotenv')
assert.equal(typeof vendor.dotenv.config, 'function', 'vendor.dotenv.config')
assert.equal(typeof vendor.dotenv.load, 'function', 'vendor.dotenv.load')
assert.equal(typeof vendor.dotenv.loadSafe, 'function', 'vendor.dotenv.loadSafe')
assert.equal(typeof vendor.dotenv.parse, 'function', 'vendor.dotenv.parse')
assert.equal(typeof vendor.dotenv.stringify, 'function', 'vendor.dotenv.stringify')
assert.equal(typeof vendor.fs, 'object', 'vendor.fs')
assert.equal(typeof vendor.fs.Dir, 'function', 'vendor.fs.Dir')
assert.equal(typeof vendor.fs.Dirent, 'function', 'vendor.fs.Dirent')
Expand Down
27 changes: 20 additions & 7 deletions test/goods.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

import assert from 'node:assert'
import { test, describe, after } from 'node:test'
import { $, chalk, fs, tempfile } from '../build/index.js'
import { echo, sleep, parseArgv, dotenv } from '../build/goods.js'
import { $, chalk, fs, tempfile, dotenv } from '../build/index.js'
import { echo, sleep, parseArgv } from '../build/goods.js'

describe('goods', () => {
function zx(script) {
Expand Down Expand Up @@ -176,6 +176,7 @@ describe('goods', () => {

describe('dotenv', () => {
test('parse()', () => {
assert.deepEqual(dotenv.parse(''), {})
assert.deepEqual(
dotenv.parse('ENV=v1\nENV2=v2\n\n\n ENV3 = v3 \nexport ENV4=v4'),
{
Expand All @@ -185,15 +186,27 @@ describe('goods', () => {
ENV4: 'v4',
}
)
assert.deepEqual(dotenv.parse(''), {})

// TBD: multiline
const multiline = `SIMPLE=xyz123
NON_INTERPOLATED='raw text without variable interpolation'
# comment ###
NON_INTERPOLATED='raw text without variable interpolation'
MULTILINE = """
long text here,
long text here, # not-comment
e.g. a private SSH key
"""`
"""
ENV=v1\nENV2=v2\n\n\n\t\t ENV3 = v3 \n export ENV4=v4
ENV5=v5 # comment
`
assert.deepEqual(dotenv.parse(multiline), {
SIMPLE: 'xyz123',
NON_INTERPOLATED: 'raw text without variable interpolation',
MULTILINE: 'long text here, # not-comment\ne.g. a private SSH key',
ENV: 'v1',
ENV2: 'v2',
ENV3: 'v3',
ENV4: 'v4',
ENV5: 'v5',
})
})

describe('load()', () => {
Expand Down
2 changes: 2 additions & 0 deletions test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import {
ProcessOutput,
ProcessPromise,
defaults,
dotenv,
minimist,
chalk,
fs,
Expand Down Expand Up @@ -106,6 +107,7 @@ describe('index', () => {
assert(which)
assert(YAML)
assert(ps)
assert(dotenv)

// utils
assert(quote)
Expand Down

0 comments on commit 109205b

Please sign in to comment.