본문 바로가기
CodeStates/└ Node.js

post request

by Dream_World 2020. 8. 16.

HTTP 서버 생성

const http = require ( 'http');					// http 모듈
const Server = http.createServer ((req, res) => { 		// server 생성
    res.end (console.log('hello world')); 
});
server.listen (5000);						// 5000 port

 

Data Parsing

if (req.method === 'POST') {
    let body = '';
    req.on('data', chunk => {			// chunk : 요청Data
        body += chunk;				// buffer 역할
    });
    req.on('end', () => {
        console.log(
            parse(body)
        );
        res.end('ok');
    });
}

'CodeStates > └ Node.js' 카테고리의 다른 글

npm start error  (0) 2020.08.28
express  (0) 2020.08.19
node debug  (0) 2020.08.18
node.js module 사용법  (0) 2020.08.10
Node.js  (2) 2020.07.20

댓글