post request1 post request 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'); }); } 2020. 8. 16. 이전 1 다음