Socket
Socket
Sign inDemoInstall

envample

Package Overview
Dependencies
1
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    envample

Generates .env.example from your .env file


Version published
Weekly downloads
3
Maintainers
1
Install size
7.27 kB
Created
Weekly downloads
 

Readme

Source

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.

Installation

npm i -g envample

or in your project

npm i -D envample

Usage

envample .env .env.example

#OR
npx .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

All comments will be preserved

Example

.env

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

.env.example

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

Keywords

FAQs

Last updated on 04 Sep 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc