# 노드 서버 생성 - [x] 노드 서버 생성 `npm init` ## 라이브러리 설치 - [x] express `npm install express --save` - [x] nodemon `npm install nodemon --save-dev` - [x] BodyParser `npm install body-parser --save` - [x] 비밀번호 암호화용 Bcrypt `npm install bcrypt --save` - [x] 로그인 토큰용 `npm install jsonwebtoken --save` - [x] 쿠키에 저장하기 `npm install cookie-parser --save`
노드 서버 생성
npm init라이브러리 설치
npm install express --savenpm install nodemon --save-devnpm install body-parser --savenpm install bcrypt --savenpm install jsonwebtoken --savenpm install cookie-parser --save