Socket
Socket
Sign inDemoInstall

dotenv

Package Overview
Dependencies
0
Maintainers
1
Versions
86
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

dotenv

Loads environment variables from .env


Version published
Weekly downloads
39M
increased by6.65%
Maintainers
1
Install size
6.26 kB
Created
Weekly downloads
 

Package description

What is dotenv?

The dotenv npm package is used to load environment variables from a .env file into process.env, providing a convenient way to configure your application's environment during development. It helps in managing sensitive credentials and configuration options by keeping them out of the codebase.

What are dotenv's main functionalities?

Basic Configuration

This is the simplest use case for dotenv. By calling `require('dotenv').config();`, dotenv reads the .env file, parses the contents, and loads them into `process.env`. After this, environment variables can be accessed using `process.env.VAR_NAME`.

require('dotenv').config();

Custom Path

If your .env file is not located in the root directory or you have multiple .env files, you can specify a custom path to your .env file using the `path` option.

require('dotenv').config({ path: '/custom/path/to/.env' });

Debugging

To assist in debugging, you can enable debug output by setting the `debug` option to `true`. This will log any errors to the console while reading the .env file.

require('dotenv').config({ debug: process.env.DEBUG });

Other packages similar to dotenv

Readme

Source

dotenv

Dotenv loads environment variables from .env into ENV (process.env).

"Storing configuration in the environment is one of the tenets of a twelve-factor app. Anything that is likely to change between deployment environments–such as resource handles for databases or credentials for external services–should be extracted from the code into environment variables.

But it is not always practical to set environment variables on development machines or continuous integration servers where multiple projects are run. Dotenv load variables from a .env file into ENV when the environment is bootstrapped."

Brandon Keepers' Dotenv in Ruby

Installation

As early as possible in your application require dotenv and load the .env variables.

var dotenv = require('dotenv')();
dotenv.load();

Usage

Add your application configuration to your .env file in the root of your project:

S3_BUCKET=YOURS3BUCKET
SECRET_KEY=YOURSECRETKEYGOESHERE
SENDGRID_USERNAME=YOURSENDGRIDUSERNAME
SENDGRID_PASSWORD=YOURSENDGRIDPASSWORDGOESHERE

Whenever your application loads, these variables will be available in process.env:

var sendgrid_username = process.env.SENDGRID_USERNAME;

Should I commit my .env file?

Try not to commit your .env file to version control. It is best to keep it local to your machine and local on any machine you deploy to. Keep production credential .envs on your production machines, and keep development .envs on your local machine.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Running tests

npm install
npm test

Keywords

FAQs

Last updated on 31 Oct 2013

Did you know?

Socket

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc