HTTP1 Rest API와 라우팅 REST API는 주소 외에도 HTTP 요청 메서드라는 것을 사용한다. 요청 메서드 종류 GET, POST, PUT, PATCH, DELETE 예시 서버 코드) //restServer.js const http = require('http'); const fs = require('fs'); const user = {} http.createServer((req, res) =>{ if(req.mothod === 'GET'){ if(req.url === '/'){ return fs.readFile('./restFront.html', (err, data) => { if(err) { throw err; } res.end(data); }); }else if(req.url === '/about'){ return fs... 2019. 11. 6. 이전 1 다음