0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【node.js】process.env.{変数名}

Posted at

大抵の場合、環境変数はハードコードされていて、

process.env.ENVNAME

たまに必要になってぼちぼち忘れてしまうので、メモ

process.env[ENVNAME]

// ユースケース(条件によって環境変数を出し分けたい時)
const env1 = 'ENV1';
process.env[env1];  // process.env.ENV1 と同じ

こんな感じ。:sunglasses:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?