Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- typescript #class #extends #public #private #protected #static
- serializeUser
- Passport
- GitHub Actions
- ejs 문법
- deserializeUser
- github#githubpages#gh-pages#deploy
- mongodb 입출력
- git#github#init#add#commit#restore#log#staging area#repository#git사용법
- insertone
- __dirname
- expess
- CSS
- typescript #import #export #*
- updateone
- 정적 페이지
- github#githubpages#빈화면#basename
- react#로스트아크#mbti#테스트
- typescript #unknown
- git vscode
- github#로컬저장소#원격저장소
- typescript #constructor #class #public #private
- typescript #class #constructor #public #private #static #extends #protected #typeof #in #instanceof #never
- e.target
- updatemany
- typescript #react #jsx #component #usestate
- TypeScript #문법
- sendFile
- Promise #async #await #try #catch
- connect-mongo
Archives
- Today
- Total
목록정적 페이지 (1)
VaIice의 이야기

정적 페이지Static Web Page웹 서버에 이미 저장된 파일 (HTML, 이미지, JS 등)을 클라이언트에게 전송한다. 모든 사용자는 서버로부터 고정된, 동일한 콘텐츠를 받게 된다.ex) 개인 포트폴리오 사이트, 회사 소개 사이트동적 페이지 Dynamic Web Page웹 서버에서 실시간으로 콘텐츠를 생성하고 제공하는 웹 페이지 사용자는 상황, 시간, 요청 등에 따라 달라지는 웹 페이지를 보게 된다.ex) 블로그, 뉴스 사이트, 커뮤니티SSR Server Side Rendering서버에서 렌더링 준비를 마친 상태로 클라이언트에게 전송한다. 서버에서 렌더링이 된 채로 클라이언트에게 전송되기 때문에, 유저는 즉시 화면을 볼 수 있다.하지만 JS가 렌더링 되기 전이기 때문에, 사이트 조작은 불가능하다...
[개념]
2024. 8. 7. 14:36