根據前面的介紹,我們知道在 SSR 渲染模式中,如果伺服器遇到高流量請求時,會延後 TTFB 的時間;而 CSR 的缺點則是大型的 JavaScript bun...
關於渲染的構想 pre-rendering 一直是 Next.js 的核心思想,他們將其分為兩種實作方法,一個是 Rendering,也就是一般的渲染概念,另一...
嗨大家!連假第一天過得如何?~ 今天想跟大家分享的主題是各種網頁渲染模式,就是 SSG、SSR、CSR、ISR。長得都差不多,可是細節都不太一樣,在決定要用哪一...
雖然一開始說 Vue 因為有 Single File Component ,所以要 Server Side Render 可能會碰到需要用 bundler 的情...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
在 SSR 誕生時就出現了一種對於某種程式碼的稱呼 Isomorphic Javascript ,這種程式碼會把與環境相關的部份包裝成同樣的 API ,並靠著...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
目前我們產生的 html 是寫死在程式中的,這篇要來讓使用者可以透過 ejs 的方式寫自己的樣版,不過我們實際要用的樣版引擎不是 ejs 而是 eta.js ,...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
從這篇開始,程式碼的目錄結構會有很大的變化,在這之前我們都把 SSR 與我們自己的 blog 的程式碼混在一起,但這系列是要做出一個通用的 SSG ,所以之後會...
這次因為要做出像在 client 一樣從 API 取得資料,所以上次的 store 不能直接使用,要準備一個新的,不過 Entity Adapter 的部份是可...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
如果你有寫過 React ,那你很可能會知道 React Router ,它幾乎可說是用 React 寫 SPA 必備的一個函式庫,雖然現在其實還有另一個 @r...
這系列的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-genera...
React 的 server side renderer 是在 react-dom 這個套件的 react-dom/server 下,API 就只包含 4 個函...
這篇與之後的程式碼在 https://github.com/DanSnow/ironman-2020/tree/master/static-site-gene...
會取這樣的標題是因為我覺得,原本的網頁只是純粹展示內容的 html ,到後來動態網頁的出現,管理大量的內容可以不用再一個個的檔案維護,而可以交給資料庫與樣版引擎...
不知各位有沒有聽過 JAMStack ? JAMStack 就是 JavaScript, API, Markup 合在一起的一種稱呼,是一種新的(?)或說是幫已...