Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- Util
- React
- macos
- OS
- postman
- Express
- TypeScript
- HTML
- Android
- typeorm
- DATABASE
- Kotlin
- OOAD
- S3
- Scheduling
- MongoDB
- node.js
- algorithm
- docker
- sequelize
- python
- linux
- AWS
- css
- Network
- ubuntu
- mongoose
- mysql
- wireshark
- Crawling
Archives
- Today
- Total
목록
반응형
dotenv (1)
반응형
SW

What is dotenv? Dotenv is a zero-dependency module that loads environment variables from a .env file into process.env. Storing configuration in the environment separate from code is based on The Twelve-Factor App methodology. 직역하면 dotenv는 .env 파일에서 process.env로 환경 변수를 로드하는 제로 종속성 모듈이라고 설명하고 있다. dotenv는 프로젝트를 개발할 때 사용되는 Key값, 데이터베이스 비밀번호 등과 같이 공개적으로 제공하기에 민감한 정보들을 외부로 노출시키지 않도록 도와주는 모듈이다. 해당 모듈을 ..
Node.js
2022. 5. 9. 21:13