2_ Template Engine 사용해서 쇼핑몰 목록 만들기.

YoonJu Lee·2021년 7월 21일
0

1. 쇼핑몰 페이지 맛보기.

: template engine을 사용해서 쇼핑몰의 첫페이지를 그려보자.

2. static 파일 추가.

https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/node.js/week03/public.zip
: 다운로드 > 압축 품 > public 폴더 안에 static 폴더 삽입.

3. index.js 수정

  • ejs 사용으로 홈페이지 생성

app.get('/home', (req, res) => {
  res.render('index'); 
})
  • /home으로 들어오는 경로는 index.ejs로 rendering함.
profile
Coder가 아닌 Engineer를 향해서.

0개의 댓글