1660804578
Next.js là một khung công tác phía máy chủ tập trung vào hiệu suất. Nó cũng là một trong những khung JavaScript được sử dụng rộng rãi nhất (bên dưới React) trên toàn thế giới. Sau đó, kết xuất phía máy chủ cho các ứng dụng React sẽ được thực hiện bởi Next.js.
Đôi khi, việc chuyển đổi từ tuyến đường này sang tuyến đường khác cần thêm một chút thời gian vì nhiều lý do khác nhau. Nó có thể là thực hiện một yêu cầu API hoặc hiển thị một thành phần trang phức tạp trong nền. Khi điều này xảy ra, ứng dụng có vẻ như đã ngừng phản hồi trong một thời gian ngắn trước khi đột ngột chuyển sang lộ trình tiếp theo. Ví dụ: hình ảnh bên dưới cho thấy một khách hàng đang chuyển từ trang này sang trang khác.
Nếu không có chỉ báo tải, người dùng có thể tin rằng không có gì xảy ra hoặc trang đang hoạt động sai, ngay cả khi tất cả những gì đang xảy ra chỉ là trang đang tìm nạp nội dung. Nếu bạn quan sát kỹ, bạn sẽ nhận thấy điều này. Điều này có thể làm cho người dùng bị nhầm lẫn và có ảnh hưởng xấu đến trang web và người dùng gặp phải ứng dụng như vậy.
Giải pháp cho vấn đề này là hiển thị thanh tiến trình trên cùng trên trang web Next.js cho đến khi dữ liệu từ máy chủ được tải vào trang web, có nghĩa là thanh tiến trình mang lại cho người dùng ấn tượng rằng trang đang tải và cũng trang đã đi bao xa về mặt tải hoàn toàn. Lấy ví dụ, trang này bên dưới, có chỉ báo thanh tiến trình.
Hãy xem cách chúng tôi có thể xây dựng chỉ báo thanh tiến trình tốt đẹp này cho Ứng dụng Next.js của chúng tôi.
Các chỉ báo thanh tiến trình có thể xác định hoặc không xác định:
Một chỉ báo được xác định khi nó cho biết một hoạt động sẽ mất bao lâu khi có thể phát hiện được phần trăm hoàn thành.
Một chỉ báo là không xác định khi nó yêu cầu người dùng đợi trong khi một thứ gì đó kết thúc, khi không cần thiết cho biết nó sẽ mất bao lâu.
Trong chỉ báo thanh tiến trình có mục đích chung, có nhiều tính năng cần bao gồm để lưu trữ Chỉ báo thanh tiến trình thân thiện với người dùng.
Hãy nhanh chóng chuyển đến thiết bị đầu cuối của chúng tôi và chạy lệnh sau để tạo một dự án Next.js.
npx create-next-app@latest
# or
yarn create next-app
# or
pnpm create next-app
Bạn sẽ được nhắc đặt tên cho dự án của mình.
Trước tiên, tôi đang tạo một tệp mới trong thư mục trang. Điều này sẽ cung cấp cho bạn một lộ trình mới. Chúng tôi sẽ đặt tên cho nó about.js
: chỉ là một h1
thẻ và một button
hướng dẫn đến trang chủ.
//about.js//
import Link from 'next/link'
function about() {
return (
<div><><h1>Next.Js Progress Bar Indicator</h1><ul>
<div className='flex'>
<Link href="/">
<a>Home</a>
</Link>
<Link href="/about">
<a>About Us</a>
</Link>
<Link href="/blog">
<a>Blog Post</a>
</Link>
<Link href="/contact">
<a>Contact Us</a>
</Link>
</div>
<h3>About Us</h3>
</ul></></div>
)
}
export default about
Chúng tôi cũng sẽ tạo các tệp khác để làm cho ứng dụng của chúng tôi linh hoạt. Chúng tôi sẽ tạo blog post
và contact us
các tệp và định tuyến / liên kết chúng trở lại home
tệp.
nprogress
là một gói cung cấp một thanh tiến trình di chuyển. Cài đặt nó bằng một trong các lệnh bên dưới.
npm i nprogress
# or
yarn add nprogress
Sau khi điều hướng phía máy khách bắt đầu, nprogress
hoạt ảnh sẽ tự động bắt đầu và dừng khi điều hướng hoàn tất. Chúng tôi có thể sử dụng các Router
sự kiện tích hợp trong Next.js để liên kết chúng và chúng tôi sẽ liên kết các sự kiện trong một thành phần duy nhất để giữ cho mã gọn gàng.
// _app.js
import Router from 'next/router';
import NProgress from 'nprogress'; //nprogress module
import 'nprogress/nprogress.css'; //styles of nprogress
//Route Events.
Router.events.on('routeChangeStart', () => NProgress.start());
Router.events.on('routeChangeComplete', () => NProgress.done());
Router.events.on('routeChangeError', () => NProgress.done());
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp;
Chúng tôi đảm bảo rằng trình xử lý sự kiện liên kết bên ngoài các thành phần để tránh ràng buộc nhiều trình xử lý. Ngoài ra, con quay tải có dạng mặc định có thể bị xóa tùy thuộc vào trường hợp sử dụng của chúng tôi.
NProgress.configure({ showSpinner: false })
Mã đã được hoàn thành. Hãy xem thanh tiến trình của chúng ta sẽ trông như thế nào với Ứng dụng Next.js của chúng ta.
Bạn có thể thêm các đạo cụ thay đổi nProgress
như màu sắc, chiều cao, phím, giới thiệu, vị trí bắt đầu, v.v. Tôi hầu như chỉ thay đổi màu sắc và chiều cao bởi vì tôi thích các kiểu khác theo cách của chúng. Đây là cách bạn có thể thay đổi màu sắc và chiều cao.
Theo mặc định, nprogress hiển thị thanh tiến trình màu xanh lam trên đầu trang. Điều đó có thể không phù hợp với giao diện của trang web. Để tùy chỉnh:
Nprogress.css
trong thư mục kiểu.--primary-color: #29d
thành bất kỳ màu nào bạn muốn/* Make clicks pass-through */
#nprogress {
--primary-color: #ff0000; //changing mine to red
pointer-events: none;
}
#nprogress .bar {
background: var(--primary-color);
position: fixed;
z-index: 1031;
top: 0;
left: 0;
width: 100%;
height: 10px; //Also increasing my bar size to 10px just for illustration purpose
}
/* Fancy blur effect */
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px var(--primary-color), 0 0 5px var(--primary-color);
opacity: 1.0;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
display: block;
position: fixed;
z-index: 1031;
top: 15px;
right: 15px;
}
#nprogress .spinner-icon {
width: 18px;
height: 18px;
box-sizing: border-box;
border: solid 2px transparent;
border-top-color: var(--primary-color);
border-left-color: var(--primary-color);
border-radius: 50%;
-webkit-animation: nprogress-spinner 400ms linear infinite;
animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
overflow: hidden;
position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@-webkit-keyframes nprogress-spinner {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
*import*
”../styles/Nprogress.css”Chỉ báo thanh tiến trình chủ yếu được sử dụng bởi các ứng dụng trực tuyến. Ví dụ, các cửa hàng trực tuyến sử dụng chúng để tăng tỷ lệ chuyển đổi; chỉ báo thanh tiến trình làm cho người dùng vượt qua các thủ tục bắt buộc cần thiết để hoàn tất việc mua hàng.
Liên kết: https://blog.openreplay.com/how-to-build-a-progress-bar-indicator-for-next-js
#nextjs #react
1632537859
Not babashka. Node.js babashka!?
Ad-hoc CLJS scripting on Node.js.
Experimental. Please report issues here.
Nbb's main goal is to make it easy to get started with ad hoc CLJS scripting on Node.js.
Additional goals and features are:
Nbb requires Node.js v12 or newer.
CLJS code is evaluated through SCI, the same interpreter that powers babashka. Because SCI works with advanced compilation, the bundle size, especially when combined with other dependencies, is smaller than what you get with self-hosted CLJS. That makes startup faster. The trade-off is that execution is less performant and that only a subset of CLJS is available (e.g. no deftype, yet).
Install nbb
from NPM:
$ npm install nbb -g
Omit -g
for a local install.
Try out an expression:
$ nbb -e '(+ 1 2 3)'
6
And then install some other NPM libraries to use in the script. E.g.:
$ npm install csv-parse shelljs zx
Create a script which uses the NPM libraries:
(ns script
(:require ["csv-parse/lib/sync$default" :as csv-parse]
["fs" :as fs]
["path" :as path]
["shelljs$default" :as sh]
["term-size$default" :as term-size]
["zx$default" :as zx]
["zx$fs" :as zxfs]
[nbb.core :refer [*file*]]))
(prn (path/resolve "."))
(prn (term-size))
(println (count (str (fs/readFileSync *file*))))
(prn (sh/ls "."))
(prn (csv-parse "foo,bar"))
(prn (zxfs/existsSync *file*))
(zx/$ #js ["ls"])
Call the script:
$ nbb script.cljs
"/private/tmp/test-script"
#js {:columns 216, :rows 47}
510
#js ["node_modules" "package-lock.json" "package.json" "script.cljs"]
#js [#js ["foo" "bar"]]
true
$ ls
node_modules
package-lock.json
package.json
script.cljs
Nbb has first class support for macros: you can define them right inside your .cljs
file, like you are used to from JVM Clojure. Consider the plet
macro to make working with promises more palatable:
(defmacro plet
[bindings & body]
(let [binding-pairs (reverse (partition 2 bindings))
body (cons 'do body)]
(reduce (fn [body [sym expr]]
(let [expr (list '.resolve 'js/Promise expr)]
(list '.then expr (list 'clojure.core/fn (vector sym)
body))))
body
binding-pairs)))
Using this macro we can look async code more like sync code. Consider this puppeteer example:
(-> (.launch puppeteer)
(.then (fn [browser]
(-> (.newPage browser)
(.then (fn [page]
(-> (.goto page "https://clojure.org")
(.then #(.screenshot page #js{:path "screenshot.png"}))
(.catch #(js/console.log %))
(.then #(.close browser)))))))))
Using plet
this becomes:
(plet [browser (.launch puppeteer)
page (.newPage browser)
_ (.goto page "https://clojure.org")
_ (-> (.screenshot page #js{:path "screenshot.png"})
(.catch #(js/console.log %)))]
(.close browser))
See the puppeteer example for the full code.
Since v0.0.36, nbb includes promesa which is a library to deal with promises. The above plet
macro is similar to promesa.core/let
.
$ time nbb -e '(+ 1 2 3)'
6
nbb -e '(+ 1 2 3)' 0.17s user 0.02s system 109% cpu 0.168 total
The baseline startup time for a script is about 170ms seconds on my laptop. When invoked via npx
this adds another 300ms or so, so for faster startup, either use a globally installed nbb
or use $(npm bin)/nbb script.cljs
to bypass npx
.
Nbb does not depend on any NPM dependencies. All NPM libraries loaded by a script are resolved relative to that script. When using the Reagent module, React is resolved in the same way as any other NPM library.
To load .cljs
files from local paths or dependencies, you can use the --classpath
argument. The current dir is added to the classpath automatically. So if there is a file foo/bar.cljs
relative to your current dir, then you can load it via (:require [foo.bar :as fb])
. Note that nbb
uses the same naming conventions for namespaces and directories as other Clojure tools: foo-bar
in the namespace name becomes foo_bar
in the directory name.
To load dependencies from the Clojure ecosystem, you can use the Clojure CLI or babashka to download them and produce a classpath:
$ classpath="$(clojure -A:nbb -Spath -Sdeps '{:aliases {:nbb {:replace-deps {com.github.seancorfield/honeysql {:git/tag "v2.0.0-rc5" :git/sha "01c3a55"}}}}}')"
and then feed it to the --classpath
argument:
$ nbb --classpath "$classpath" -e "(require '[honey.sql :as sql]) (sql/format {:select :foo :from :bar :where [:= :baz 2]})"
["SELECT foo FROM bar WHERE baz = ?" 2]
Currently nbb
only reads from directories, not jar files, so you are encouraged to use git libs. Support for .jar
files will be added later.
The name of the file that is currently being executed is available via nbb.core/*file*
or on the metadata of vars:
(ns foo
(:require [nbb.core :refer [*file*]]))
(prn *file*) ;; "/private/tmp/foo.cljs"
(defn f [])
(prn (:file (meta #'f))) ;; "/private/tmp/foo.cljs"
Nbb includes reagent.core
which will be lazily loaded when required. You can use this together with ink to create a TUI application:
$ npm install ink
ink-demo.cljs
:
(ns ink-demo
(:require ["ink" :refer [render Text]]
[reagent.core :as r]))
(defonce state (r/atom 0))
(doseq [n (range 1 11)]
(js/setTimeout #(swap! state inc) (* n 500)))
(defn hello []
[:> Text {:color "green"} "Hello, world! " @state])
(render (r/as-element [hello]))
Working with callbacks and promises can become tedious. Since nbb v0.0.36 the promesa.core
namespace is included with the let
and do!
macros. An example:
(ns prom
(:require [promesa.core :as p]))
(defn sleep [ms]
(js/Promise.
(fn [resolve _]
(js/setTimeout resolve ms))))
(defn do-stuff
[]
(p/do!
(println "Doing stuff which takes a while")
(sleep 1000)
1))
(p/let [a (do-stuff)
b (inc a)
c (do-stuff)
d (+ b c)]
(prn d))
$ nbb prom.cljs
Doing stuff which takes a while
Doing stuff which takes a while
3
Also see API docs.
Since nbb v0.0.75 applied-science/js-interop is available:
(ns example
(:require [applied-science.js-interop :as j]))
(def o (j/lit {:a 1 :b 2 :c {:d 1}}))
(prn (j/select-keys o [:a :b])) ;; #js {:a 1, :b 2}
(prn (j/get-in o [:c :d])) ;; 1
Most of this library is supported in nbb, except the following:
:syms
.-x
notation. In nbb, you must use keywords.See the example of what is currently supported.
See the examples directory for small examples.
Also check out these projects built with nbb:
See API documentation.
See this gist on how to convert an nbb script or project to shadow-cljs.
Prequisites:
To build:
bb release
Run bb tasks
for more project-related tasks.
Download Details:
Author: borkdude
Download Link: Download The Source Code
Official Website: https://github.com/borkdude/nbb
License: EPL-1.0
#node #javascript
1660804578
Next.js là một khung công tác phía máy chủ tập trung vào hiệu suất. Nó cũng là một trong những khung JavaScript được sử dụng rộng rãi nhất (bên dưới React) trên toàn thế giới. Sau đó, kết xuất phía máy chủ cho các ứng dụng React sẽ được thực hiện bởi Next.js.
Đôi khi, việc chuyển đổi từ tuyến đường này sang tuyến đường khác cần thêm một chút thời gian vì nhiều lý do khác nhau. Nó có thể là thực hiện một yêu cầu API hoặc hiển thị một thành phần trang phức tạp trong nền. Khi điều này xảy ra, ứng dụng có vẻ như đã ngừng phản hồi trong một thời gian ngắn trước khi đột ngột chuyển sang lộ trình tiếp theo. Ví dụ: hình ảnh bên dưới cho thấy một khách hàng đang chuyển từ trang này sang trang khác.
Nếu không có chỉ báo tải, người dùng có thể tin rằng không có gì xảy ra hoặc trang đang hoạt động sai, ngay cả khi tất cả những gì đang xảy ra chỉ là trang đang tìm nạp nội dung. Nếu bạn quan sát kỹ, bạn sẽ nhận thấy điều này. Điều này có thể làm cho người dùng bị nhầm lẫn và có ảnh hưởng xấu đến trang web và người dùng gặp phải ứng dụng như vậy.
Giải pháp cho vấn đề này là hiển thị thanh tiến trình trên cùng trên trang web Next.js cho đến khi dữ liệu từ máy chủ được tải vào trang web, có nghĩa là thanh tiến trình mang lại cho người dùng ấn tượng rằng trang đang tải và cũng trang đã đi bao xa về mặt tải hoàn toàn. Lấy ví dụ, trang này bên dưới, có chỉ báo thanh tiến trình.
Hãy xem cách chúng tôi có thể xây dựng chỉ báo thanh tiến trình tốt đẹp này cho Ứng dụng Next.js của chúng tôi.
Các chỉ báo thanh tiến trình có thể xác định hoặc không xác định:
Một chỉ báo được xác định khi nó cho biết một hoạt động sẽ mất bao lâu khi có thể phát hiện được phần trăm hoàn thành.
Một chỉ báo là không xác định khi nó yêu cầu người dùng đợi trong khi một thứ gì đó kết thúc, khi không cần thiết cho biết nó sẽ mất bao lâu.
Trong chỉ báo thanh tiến trình có mục đích chung, có nhiều tính năng cần bao gồm để lưu trữ Chỉ báo thanh tiến trình thân thiện với người dùng.
Hãy nhanh chóng chuyển đến thiết bị đầu cuối của chúng tôi và chạy lệnh sau để tạo một dự án Next.js.
npx create-next-app@latest
# or
yarn create next-app
# or
pnpm create next-app
Bạn sẽ được nhắc đặt tên cho dự án của mình.
Trước tiên, tôi đang tạo một tệp mới trong thư mục trang. Điều này sẽ cung cấp cho bạn một lộ trình mới. Chúng tôi sẽ đặt tên cho nó about.js
: chỉ là một h1
thẻ và một button
hướng dẫn đến trang chủ.
//about.js//
import Link from 'next/link'
function about() {
return (
<div><><h1>Next.Js Progress Bar Indicator</h1><ul>
<div className='flex'>
<Link href="/">
<a>Home</a>
</Link>
<Link href="/about">
<a>About Us</a>
</Link>
<Link href="/blog">
<a>Blog Post</a>
</Link>
<Link href="/contact">
<a>Contact Us</a>
</Link>
</div>
<h3>About Us</h3>
</ul></></div>
)
}
export default about
Chúng tôi cũng sẽ tạo các tệp khác để làm cho ứng dụng của chúng tôi linh hoạt. Chúng tôi sẽ tạo blog post
và contact us
các tệp và định tuyến / liên kết chúng trở lại home
tệp.
nprogress
là một gói cung cấp một thanh tiến trình di chuyển. Cài đặt nó bằng một trong các lệnh bên dưới.
npm i nprogress
# or
yarn add nprogress
Sau khi điều hướng phía máy khách bắt đầu, nprogress
hoạt ảnh sẽ tự động bắt đầu và dừng khi điều hướng hoàn tất. Chúng tôi có thể sử dụng các Router
sự kiện tích hợp trong Next.js để liên kết chúng và chúng tôi sẽ liên kết các sự kiện trong một thành phần duy nhất để giữ cho mã gọn gàng.
// _app.js
import Router from 'next/router';
import NProgress from 'nprogress'; //nprogress module
import 'nprogress/nprogress.css'; //styles of nprogress
//Route Events.
Router.events.on('routeChangeStart', () => NProgress.start());
Router.events.on('routeChangeComplete', () => NProgress.done());
Router.events.on('routeChangeError', () => NProgress.done());
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp;
Chúng tôi đảm bảo rằng trình xử lý sự kiện liên kết bên ngoài các thành phần để tránh ràng buộc nhiều trình xử lý. Ngoài ra, con quay tải có dạng mặc định có thể bị xóa tùy thuộc vào trường hợp sử dụng của chúng tôi.
NProgress.configure({ showSpinner: false })
Mã đã được hoàn thành. Hãy xem thanh tiến trình của chúng ta sẽ trông như thế nào với Ứng dụng Next.js của chúng ta.
Bạn có thể thêm các đạo cụ thay đổi nProgress
như màu sắc, chiều cao, phím, giới thiệu, vị trí bắt đầu, v.v. Tôi hầu như chỉ thay đổi màu sắc và chiều cao bởi vì tôi thích các kiểu khác theo cách của chúng. Đây là cách bạn có thể thay đổi màu sắc và chiều cao.
Theo mặc định, nprogress hiển thị thanh tiến trình màu xanh lam trên đầu trang. Điều đó có thể không phù hợp với giao diện của trang web. Để tùy chỉnh:
Nprogress.css
trong thư mục kiểu.--primary-color: #29d
thành bất kỳ màu nào bạn muốn/* Make clicks pass-through */
#nprogress {
--primary-color: #ff0000; //changing mine to red
pointer-events: none;
}
#nprogress .bar {
background: var(--primary-color);
position: fixed;
z-index: 1031;
top: 0;
left: 0;
width: 100%;
height: 10px; //Also increasing my bar size to 10px just for illustration purpose
}
/* Fancy blur effect */
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px var(--primary-color), 0 0 5px var(--primary-color);
opacity: 1.0;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
display: block;
position: fixed;
z-index: 1031;
top: 15px;
right: 15px;
}
#nprogress .spinner-icon {
width: 18px;
height: 18px;
box-sizing: border-box;
border: solid 2px transparent;
border-top-color: var(--primary-color);
border-left-color: var(--primary-color);
border-radius: 50%;
-webkit-animation: nprogress-spinner 400ms linear infinite;
animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
overflow: hidden;
position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@-webkit-keyframes nprogress-spinner {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
*import*
”../styles/Nprogress.css”Chỉ báo thanh tiến trình chủ yếu được sử dụng bởi các ứng dụng trực tuyến. Ví dụ, các cửa hàng trực tuyến sử dụng chúng để tăng tỷ lệ chuyển đổi; chỉ báo thanh tiến trình làm cho người dùng vượt qua các thủ tục bắt buộc cần thiết để hoàn tất việc mua hàng.
Liên kết: https://blog.openreplay.com/how-to-build-a-progress-bar-indicator-for-next-js
#nextjs #react
1625674200
In this video, we are going to implement Google Analytics to our Next JS application. Tracking page views of an application is very important.
Google analytics will allow us to track analytics information.
Frontend: https://github.com/amitavroy/video-reviews
API: https://github.com/amitavdevzone/video-review-api
App link: https://video-reviews.vercel.app
You can find me on:
Twitter: https://twitter.com/amitavroy7
Discord: https://discord.gg/Em4nuvQk
#next js #js #react js #react #next #google analytics
1625751960
In this video, I wanted to touch upon the functionality of adding Chapters inside a Course. The idea was to not think much and start the development and pick up things as they come.
There are places where I get stuck and trying to find answers to it up doing what every developer does - Google and get help. I hope this will help you understand the flow and also how developers debug while doing development.
App url: https://video-reviews.vercel.app
Github code links below:
Next JS App: https://github.com/amitavroy/video-reviews
Laravel API: https://github.com/amitavdevzone/video-review-api
You can find me on:
Twitter: https://twitter.com/amitavroy7
Discord: https://discord.gg/Em4nuvQk
#next js #api #react next js #next #frontend #development
1599119110
Next js Tutorial For Beginners is the today’s topic. It is no secret that creating single-page applications can be immensely challenging these days. But with the help of some libraries, frameworks, and tools, it is effortless nowadays. React.js is the common frontend libraries among the Front-end developers. Its virtual dom theory makes React faster and gives us the better application performance. Now, one problem is that Single Page Applications are not at all SEO friendly because it is rendered on the Client side and not Server side . So when the Search Engine crawlers try to send a request, they cannot get our meta content or description and not even the main content. Search Engines do not care about how your app is architected or whatever ideology was used to adjust and fetch the right material. Their bots are not as smart as using your apps as a real user would. All they care about is that once they send their spiders to crawl and index your site, whatever the server provides on the first request is what gets indexed. In our case, all they get is our div tag with an id and bundled JS file, and we can not index our website correctly. So some how, we need a SSR to tackle this problem and in React js, Next.js is the perfect solution.
#js #react.js #next.js