nodejs express를 활용한 정적 파일 제공

정적 파일을 제공할 폴더 설정

1
app.use(express.static('public'));

express.static을 활용하여 public 폴더를 정적 파일을 제공하기 위한 기본 폴더로 지정한다.

정적 파일 요청 양식

1
2
3
4
5
localhost:3000/images/kitten.jpg
localhost:3000/css/style.css
localhost:3000/js/app.js
localhost:3000/images/bg.png
localhost:3000/hello.html

기본 폴더명인 public은 입력하지 않아도 된다.

참조

nodejs swagger api-doc 구현하기 여행산업의 모바일화가 우리에게 시사하는 점

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×