在 node.js 中将数组定义为环境变量

我有一个从中提取数据的数组。

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

因为我使用的是 heroku,所以最好用一个环境变量代替它,但我不知道如何做到这一点。

使用 JSON 字符串作为环境变量是正确的方法吗?

122582 次浏览

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.

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 :

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

Parse :

const LIST = JSON.parse(process.env.ANY_LIST);

Use :

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

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