-
준비
서버 예제
예제로 test1.js파일을 만들어 내용을 입력.
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}/`); });
실행
명령창에 아래 명령어를 입력하면 서버가 구동되고
node test1.js
웹브라우저로
http://127.0.0.1:3000/
에 접속하면 확인할 수 있다.'NodeJs' 카테고리의 다른 글
Npm install -g 전역 설치 (0) 2022.11.23 Npm init package.json 생성 (0) 2022.11.23 Nodejs Npm (0) 2022.11.23 NodeJs Express 설치 (0) 2022.11.20 NodeJs 기반에서 React 배포 (0) 2022.11.20 npm install 명령어 (0) 2022.11.20 express 서버 기본 예제 (0) 2022.11.20 NodeJs 설치 (0) 2022.11.18