post로 데이터를 보낼 때 json형태로 사용을 한다. 그런데 json 형태로 데이터가 오가지 않는다. 2가지 방법이 존재한다. 이전에는 express에 json형태를 다루지 못했다. 그래서 body-parser라는 모듈이 따로 존재했다. body-parser : expressjs.com/en/resources/middleware/body-parser.html const bodyParser = require('body-parser') const express = require('express') const app = express() const port = 80 // application/x-www-form-urlencoded app.use(bodyParser.urlencoded({extended: t..