환경

3241 단어 nodeopensource
💨 Envn은 .env 파일에서 process.env로 환경 변수를 로드하는 제로 의존성 모듈입니다.




설치




$ npm install envn
// or via Yarn
$ yarn add envn


용법




const envn = require('envn');


방법 및 예




const config = {
  // prefix of start name of env or any file contains environnement variables
  prefix: '.env',

  // default: process.env.NODE_ENV
  // developement | production | test -> this will load file .env.developement
  mode: 'developement'
}

// Envn method loads variables into process.env and also returns an object
envn(config?: Object) : Object

// env file example
REDIS:
  API_KEY=xxxx

console.log(process.env.REDIS_API_KEY);


메모


  • Examples of .env file

  • 특허



    MIT 라이선스에 따라 배포됨

    좋은 웹페이지 즐겨찾기