-
준비
express설치
예제 코드
예제로 'text2.js'파일을 만들고 아래 내용 입력
const express = require('express'); const path = require('path'); const app = express(); const hostname = '127.0.0.1'; const port = 3000; app.listen(port, hostname, function () { console.log(`Server running at http://${hostname}:${port}/`); });
실행
node test2.js
'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 http server 기본 예제 (0) 2022.11.20 NodeJs 설치 (0) 2022.11.18