TIL_Express

YoonJu Lee·2021년 7월 15일
0

항해99_TIL

목록 보기
9/17

EXPRESS

https://expressjs.com/
express 설치 >

설치완료)

node_modules 라는 모듈 폴더 안에..


express 폴더 생성

1. 예제 보기.

2. express 예제 실행

const express = require('express')
const app = express() 
// express module을 함수처럼 가져왔다. 이는, express모듈은 함수라는 뜻!!

app.get('/', function (req, res) {
  res.send('Hello World')
})

app.listen(3000)
profile
Coder가 아닌 Engineer를 향해서.

0개의 댓글