Parse and stringify the environment configuration files and format, also known as .env files and dotenv files
They are files use to configure environments by applications and servers that support them. Generally they look like this:
a=1
b:2
c = 3
d : 4
They are commonly also called envfiles, .env files, and dotenv files.
- Install:
npm install --save envfile
- Executables:
envfile2json
,json2envfile
- Module:
require('envfile')
- Install:
npm install --save envfile
- Module:
require('envfile')
- CDN URL:
//wzrd.in/bundle/envfile@2.1.1
- Install:
ender add envfile
- Module:
require('envfile')
This package is published with the following editions:
envfile
aliasesenvfile/index.js
which uses Editions to automatically select the correct edition for the consumers environmentenvfile/source/index.js
is Source + ESNext + Requireenvfile/es2015/index.js
is Babel Compiled + ES2015 + Require
Older environments may need Babel's Polyfill or something similar.
Requires a global installation of envfile: npm install -g envfile
# envfile to JSON
echo -e "a=1\nb:2" | envfile2json > config.json
# JSON to envfile
echo '{"a":1,"b":2}' | json2envfile > config.env
Via Node.js
// Include envfile
var envfile = require('envfile')
var sourcePath = 'file.env'
var sourceString = "a=1\nb:2"
var sourceObject = {a:1, b:2}
// Parse an envfile path
// async
envfile.parseFile(sourcePath, function (err, obj) {
console.log(err, obj)
})
// sync
console.log(
envfile.parseFileSync(sourcePath)
)
// Parse an envfile string
// async
envfile.parse(sourceString, function (err, obj) {
console.log(err, obj)
})
// sync
console.log(
envfile.parseSync(sourceString)
)
// Stringify a javascript object to an envfile string
// async
envfile.stringify(sourceObject, function (err, str) {
console.log(err, str)
})
// sync
console.log(
envfile.stringifySync(sourceObject)
)
Discover the release history by heading on over to the HISTORY.md
file.
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
These amazing people are maintaining this project:
No sponsors yet! Will you be the first?
These amazing people have contributed code to this project:
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Unless stated otherwise all works are:
- Copyright © 2013+ Bevry Pty Ltd
and licensed under: