express (post)

유석현(SeokHyun Yu)·2022년 12월 5일
0

Node.js

목록 보기
13/29
post-thumbnail

code

import express from "express";

// 서버 생성
const app = express();

// json 형식의 req.body값을 읽기 위해서는 express.json() 미들웨어를 사용해야 한다
// 사용하지 않으면 req.body가 undefined로 넘어온다
app.use(express.json());

// post는 서버에 무언가를 생성할 때 사용하는 http 메서드이다
// 그렇다고 무조건 생성할 때만 쓰이지는 않고 get 메서드처럼 쓰일 때도 있다
app.post("/", (req, res) => {
    console.log(req.body);
  	res.send(req.body);
});

// 8000포트로 서버 열기
app.listen(8000);

profile
Backend Engineer

0개의 댓글