yarn init
yarn add express
// express 임포트
import express from "express";
// 앱 초기화
const app = express();
// 포트 설정 - 0-65535 범위
const port = 3000;
// REST-API GET 요청
app.get("/", (req, res) => {
res.send("Hello World!");
});
// 앱 실행
app.listen(port, () => {
console.log(`Example app listening on port ${port}`);
});