Written by
nodejs-style
on
on
1006: [nodejs] 웹 서버 호스팅하기
1006: [nodejs] 웹 서버 호스팅하기
/* 간단한 http 서버 만들기 */ const http = require('http') // http 모듈을 사용 // server 객체 생성 const server = http.createServer((req, res) => { //call back res.statusCode = 200 // 200 : http 에서 OK res.end('Hello') }) const PORT = 3000 server.listen(PORT, () =>{ console.log("The server is lstening at port ", PORT) })
공유하기 글 요소 저작자표시
from http://whatsmyinterest.tistory.com/35 by ccl(A) rewrite - 2021-10-06 11:26:44