Defining an array as an environment variable in node.js

85,080

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"

Solution 4

It probably depends on your data. For example, if none of the values will ever contain commas, you could just make it a comma-separated list and then split on a comma (e.g. starting your app with FOO=bar,baz,quux node myapp.js then doing var foo = process.env.FOO.split(',') in myapp.js).

Otherwise if your input values can be more complex, JSON will probably be the easiest to work with.

Share:
85,080
paranoidhominid
Author by

paranoidhominid

#SOReadyToHelp

Updated on September 17, 2021

Comments

  • paranoidhominid
    paranoidhominid over 2 years

    I have an array that I pull data from.

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

    Since I'm using heroku, it may be better to replace it with an environment variable, but I'm not sure how to do that.

    Is using a JSON string as an environment variable the way to go?

  • 5413668060
    5413668060 over 4 years
    agree to use , instead of ' '
  • Saravanan V
    Saravanan V about 2 years
    works like a charm! 👍👌