node.js예제1 node.js 기초(예제) - 간단한 HTTP 서버 생성 node.js로 HTTP 서버를 생성하는 예제 node.js로 HTTP 내 PC에 서버를 생성하고 서버에 request가 들어오면 간단하게 response를 생성하는 예제임. IDE : VSCode(MS Visual Studio Code) VSCode에서 "File" > "New Text File" 생성 node.js 샘플 코드를 입력한다. (복붙 ㄱㄱ!!) const http = require('http'); // http 객체 생성 const hostname = '127.0.0.1'; // http 서버의 주소(localhost인 127.0.0.1) const port = 3000; // http 서버의 port const server = http.createServer((req, res) => { .. 2022. 11. 18. 이전 1 다음