简体   繁体   中英

Defining an array as an environment variable in node.js

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?

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

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']

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"

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 (eg 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.

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(", ");

Note that it can also be useful to enable multiline mode when you need a long list:

const env = require('dotenv').config({ multiline: 'line-breaks' })

https://github.com/motdotla/dotenv/commit/0a9332ff70f5121c1221d5c32839a759c60cb879


Full example:

FESTIVALS="bonnaroo
lollapalooza
coachella"
const env = require('dotenv').config({ multiline: 'line-breaks' });
const festivals = env.FESTIVALS.split('\n');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM