[Node.js] Node.js 간단한 웹서버 만들기
Node.js에서 제공하는 기본 코드가 있다.이를 이용해 간단한 서버 테스트를 할 수 있다. const http = require('http');우선 http 변수를 선언하고, http 모듈을 가져온다. const hostname = '127.0.0.1';const port = 1337;다음 hostname 변수를 선언하고, ip를 할당해준다.127.0.0.1 은 자기자신의 IP를 의미한다.그리고 임의의 포트번호를 설정해준다. http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World\n');}).listen(port, hostname, () => { ..