1. body-parser client에서 sever로 보낸 클라이언트 POST request data의 body로부터 파라미터를 편리하게 추출해주는 node.js 모듈 근데 express쓰면 이거 따로 안써도 된다고함. 1-1. body-parser이용 npm install body-parser --save const express = require('express');//express안에 body-parser포함되서 따로 안써도 된다고함 const app = express(); const port = 3000 //아무 포트번호 지정 const bodyParser = require('body-parser'); const { User } = require('./models/User');//모델 들고옴 /..