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 |
Tags
- NPM
- NoSQL
- nodejs교과서
- React
- 시퀄라이즈공부
- express-generator
- mongo
- 리액트기초
- 리액트컴포넌트
- component
- sementicversion
- node
- 리액트
- 클래스컴포넌트
- 제로초예제
- React Component
- MongoDB
- nodeJS
- 시퀄라이즈
- npm명령어
- 리액트스타디
- sequelize
- mongoose
Archives
- Today
- Total
개발노트
dotenv 본문
코드가 노출됬을때 취약한 정보들을 한번더 암호화할수 있게 해주는 패키지
.env파일을 만든다 (이름이 그냥 .env)
COOKIE_SECRET=cookiesecret
DB_PASSWORD=1234
index.js 에서 불러와서 config해주면 .env파일을 읽어들어서 process.env.변수로 접근가능.
const dotenv = require('dotenv');
dotenv.config(); // 실행
'Node js' 카테고리의 다른 글
passport (0) | 2020.11.06 |
---|---|
axios (0) | 2020.08.25 |
axios, 쿠키심기 (0) | 2020.08.23 |
cookie-parser express-session (0) | 2020.08.22 |
node 란? npm 기본 명령어 (0) | 2020.07.05 |