dotenv-stringify
v3.0.1
Published
Compose a envfile string from an object, per the motdotla/dotenv parser specifications
Downloads
13,504
Maintainers
Readme
dotenv-stringify
Compose a envfile string from an object, per the motdotla/dotenv parser specifications. Objects stringified using this package will be parsable by dotenv.parse()
.
Installation
$ npm install dotenv-stringify
Usage
import fs from 'fs'
import stringify from 'dotenv-stringify'
const envstr = stringify(process.env);
fs.writeFileSync('.env', envstr);
License
MIT License