개발로그필름
[WEB] express 본문
728x90
반응형
SMALL
첫 express application 만들기
import express from "express";
const app = express();
"express"라는 package를 express라는 이름으로 import
express()를 사용하면 express application을 생성해준다
import express from "express";
const app = express();
// 추가
const handleListening = () => console.log("Server listening on port 4000")
app.listen(4000, handleListening);
위와 같이 코드를 작성하고 저장만 해도 nodemon 덕분에 자동 재시작된다
주소창에 localhost:4000 쳐서 Cannot Get / 이 뜨면 잘한 것이다
내 요청에 응답이 온 것!
정말 내 요청에 응답한 것인지 확인해보기 위해 서버 종료!
ctrl + c
짝짝짝~ 연결할 수 없다는 화면이 나온다!
위에 작성한 코드를 좀 더 예쁘게 바꿔 적을 수도 있다
import express from "express";
const PORT = 4000;
const app = express();
const handleListening = () => console.log(`Server listening on port http://localhost:${PORT}`)
app.listen(PORT, handleListening);
반응형
LIST
'WEB' 카테고리의 다른 글
[WEB] middleware (0) | 2022.07.15 |
---|---|
[WEB] Request, Response (0) | 2022.07.14 |
[WEB] babel 실행, Nodemon (0) | 2022.07.12 |
[WEB] Babel (0) | 2022.07.07 |
[WEB] express 설치 (0) | 2022.07.06 |
Comments