backend (1) 썸네일형 리스트형 [Node.js] index.js 파해쳐보기 Index.js Node.js 프로젝트를 생성하고 Backend Server를 구동 시킬 때 예시 코드이다. const http = require("http"); const hostname = "127.0.0.1"; const port = 3000; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader("Content-Type", "text/plain"); res.end("Hello World"); }); server.listen(port, hostname, () => { console.log(`Server running at http://${hostname}:${port}/`); }); 이 코드를 하나하나.. 이전 1 다음