Defining an array as an environment variable in node.js

Solution 1:

In this scenario, it doesn't sound like an env var is the way to go.

Usually, you'll want to use environment variables to give your application information about its environment or to customize its behavior: which database to connect to, which auth tokens to use, how many workers to fork, whether or not to cache rendered views, etc.

Your example looks more like a model, so something like a database is probably a better fit.

That said, there's no context around what your app does or how it uses festivals, so if it does turn out that you should use an env var, then you have several options. The simplest is probably to just use a space or comma-delimited string:

heroku config:set FESTIVALS="bonnaroo lollapalooza coachella"

then:

var festivals = process.env.FESTIVALS.split(' ');

disclosure: I'm the Node.js Platform Owner at Heroku

Solution 2:

Your example looks more of an enumeration than a config array. I'd highly recommend using a model to save it.

In case you are referring to the above array just as an example and are more curious about how can arrays be stored in an env file -

Short answer: You cannot.

Long answer: .env variables are strings So something like

BOOLEAN = true

will be treated as

BOOLEAN = "true"

and so will

FESTIVALS = ['bonnaroo', 'lollapalooza', 'coachella'] 

be treated as

FESTIVALS = "['bonnaroo', 'lollapalooza', 'coachella']"

Solution:

You can save the array as a delimited string in .env

FESTIVALS = "bonnaroo, lollapalooza, coachella"

In your js file you can convert it to an array using

var festivals = process.env.FESTIVALS.split(", ");

The result will be

['bonnaroo', 'lollapalooza', 'coachella']

Solution 3:

Use JSON (The Best Way 💪🎃)

Define :

LIST_VAR=["A", "B", "C"]

Parse :

const list = JSON.parse(process.env.LIST_VAR);

Use :

console.log(Array.isArray(list)); // true
consloe.log(list[2]); // "C"