[node] 익스프레스 없이 http 요청하기
HTTP 요청에서 데이터를 받는 방법const http = require("http"); // 모듈 불러오기//서버 생성const server = http.createServer((req, res) => { console.log("INCOMING REQUEST"); console.log(req.method, req.url); // post 요청 처리 if (req.method === "POST") { let body = ""; // 데이터가 모두 수신된 후 처리 ++ body에 추가. req.on("end", () => { // 클라이언트로부터 모든 data를 수신하면 실행한다. const userName = body.split("=")[1]; ..