Defining an array as an environment variable in node.js

Javascriptnode.jsHerokuEnvironment VariablesEnv

Javascript Problem Overview


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?

Javascript Solutions


Solution 1 - Javascript

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 - Javascript

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 - Javascript

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 - Javascript

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.

Solution 5 - Javascript

short answer: yes, you can!

Although a .env variable is string, you can parse it into an array

2 ways to do it are:

1.JSON.parse()

YOUR_ENV = ["A", "B", "C"] # in your .env file
const envs = JSON.parse(process.env.YOUR_ENV); // in your app file

2. split()

YOUR_ENV = "A, B, C"
const envs = process.env.YOUR_ENV.split(", ");

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionparanoidhominidView Question on Stackoverflow
Solution 1 - JavascripthunterloftisView Answer on Stackoverflow
Solution 2 - JavascriptAbhishekView Answer on Stackoverflow
Solution 3 - JavascriptFoadView Answer on Stackoverflow
Solution 4 - JavascriptmscdexView Answer on Stackoverflow
Solution 5 - JavascriptAmbasselView Answer on Stackoverflow