Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8838

dotenvで環境変数ではなく .env 使う | Node.js

$
0
0
$ npm install dotenv --save

プロジェクトのルートディレクトリに .envファイルを作成します。

# これはコメント行
KEY1=VALUE1
KEY2=VALUE2

実装

require('dotenv').config();if(typeofprocess.env.KEY1=='undefined'){console.error('Error: "KEY1" is not set.');process.exit(1);}console.log(process.env.KEY1);//=> VALUE1

Viewing all articles
Browse latest Browse all 8838

Trending Articles