envample
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

envample

Generates .env.example or .env.* file from your .env file.

This a quick way to keep your .env file and your .env.example file in sync.

Quick use

npx envample

Installation

npm i -g envample

or in your project

npm i -D envample

Usage

envample

# OR
envample .env .env.example

If the arguments are not specified .env and .env.example will be used

How it works

Lines preceded with # example comment will be copied as is.

Lines preceded with # example=value comment will be copied with the value replaced by the specified value

Lines not preceded by an # example comment will be copied without the value

Lines preceded with # ignore will be ignored

All comments except those marked with # ignore will be preserved

Example

.env

GIT=true
# example=false
DEBUG=true
SECRET=secret
# just a comment
# ignore
IGNORED=true

.env.example

# example
GIT=true
# example=false
DEBUG=false
SECRET=
# just a comment

/envample/

    Package Sidebar

    Install

    npm i envample

    Weekly Downloads

    1

    Version

    1.1.0

    License

    MIT

    Unpacked Size

    7.98 kB

    Total Files

    11

    Last publish

    Collaborators

    • celleb