다음은 Express를 이용해서 "Hello world"를 출력하는 예제이다.
Express 설치하기
node는 이미 설치했다고 가정한다. 다음과 같이 Express를 설치한다.
npm install express --save
Express로 "Hello world" 출력하기
server.js를 만들고 다음과 같이 작성한다.
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => res.send('Hello World'))
app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`))
node 명령어를 이용해서 server.js 파일을 실행한다.
node server.js
서버가 시작하면 콘솔에 다음과 같이 찍힌다.
Example app listening at http://localhost:3000
'http://localhost:3000'에 접속하면 "Hello World" 라는 화면을 볼 수 있다.
Node 서버 종료하기
터미널에서 Ctrl + C 단축키를 누르면 실행중인 Node 서버가 종료된다.
(참고 : express 공식문서 https://expressjs.com/ko/starter/hello-world.html)