Using dotenv package to create environment variables

Jason Arnold
3 min readApr 11, 2017

--

https://stocksnap.io/photo/BLM201LYCH

Applications that rely on third-party sources for data will at some point need to include things like OAuth tokens, SSH keys, or API credentials. This becomes an issue when the code for the application gets pushed up to a public facing source control like GitHub. Once the code is up there it is accessible to anyone that sees it. And so are your keys.

GitHub knows this is a problem and includes steps in their documentation to get around it.

How do you get around this?

There are tools being developed that search through repositories and find strings that could be sensitive information. This is a great idea but you would be relying on the code to find the strings.

You could add all of the files with sensitive information to your .gitignore file? You could, but then this would prevent all needed files from getting into source control. And anyone wanting to help write the code wouldn’t have a complete version.

You could fill in the files with dummy data and push them up. But then anytime you wanted to work on the real code you’d have to remember to swap out the dummy data with real data. Then remember to swap it back in when you push the code up. Kind of defeats the purpose of source control and quickly becomes a headache.

One solution for this is to use environment variables. These are local variables that are made available to an application. Creating these variables is made easy with a tool like dotenv. This module loads environment variables from a .env file that you create and adds them to the process.env object that is made available to the application.

Using dotenv

It’s pretty simple to use. First, install the package.

npm install dotenv --save

Next add the following line to your app.

require('dotenv').config()

Then create a .env file at the root directory of your application and add the variables to it.

//contents of .envSECRET_KEY=abcd1234

Finally, add ‘.env’ to your ‘.gitignore’ file so that Git ignores it and it never ends up on GitHub. You can add any keys you want to this file.

That’s it. Four simple steps.

Now, from within the app, any variables you’ve added to the file will be available. For example, if I add the above name/value to the .env file and console out the contents of process.env I should see this at the end of the object:

To take this a step further, I can display this information in a browser to confirm the app can read it.

After creating a basic express server I can send the key to the ‘/’ route so that it gets rendered to the page.

const express = require('express');
const app = express();
const port = process.env.PORT || 3000;
require('dotenv').config();app.get('/', (req, res) => {
res.send(process.env.SECRET_KEY);
})
app.listen(port, () => {
console.log(`Server is running on port ${port}.`)
})

This code will look like this:

Dotenv is a simple way to allow you to create secret keys that your application needs to function and keep them from going public.

The code for this example can be found here.

--

--