728x90
const http = require("http");
const port = 3000;
http.createServer((request, response) => {
response.writeHead(200, { "Content-Type": "text/html" });
response.end("<h1>Hello World!</h1>");
}).listen(port, () => console.log(`Server running at http://localhost:${port}`));
반응형
'Programming > Javascript' 카테고리의 다른 글
[jQuery]datepicker에서 여러 날짜 선택할 수 있게 (0) | 2021.12.02 |
---|---|
url, query string 모듈 (0) | 2021.11.19 |
Swiper에 ajax로 추가할 경우 (2) | 2021.09.13 |
[jQuery]datepicker에서 date format을 두 가지 이상으로... (0) | 2021.08.19 |
date range picker (0) | 2021.08.04 |