© 2023 Hashnode
#server-side-rendering
We often hear people saying that NextJs is SEO-friendly and ReactJs is not. And hence NextJs is better if you want to rank your website in google searches. But why is that? So to answer that, we will …
We can show a loading sign with Server-Side Rendering in Next.js. But, it only works when moving by Single-Page Application methods such as 'useRouter' or 'Link'. Below is an example. Please check page1 and page2. For example, the URL is ht…
JavaScript has come a long way since its early days as a scripting language for browsers. Today, JavaScript is used not only on the front end but also on the back end, thanks to the rise of Node.js. B…
React is a JavaScript library for building user interfaces, and it's a popular choice for developing web applications. One of the key concepts in React is state, which refers to the data that determin…
React is a popular JavaScript library for building user interfaces. It was created by Facebook and is now maintained by a community of developers. React allows developers to build complex web applicat…
Next.js is a powerful framework for building React-based applications.One of its awesome features is server-side rendering SSR. This allows for faster initial load times, better SEO, and a more seamle…
Client-Server Architecture is a concept you will encounter in many areas of your IT journey. Client-Server refers to an architecture in which two or more computers are connected over a network to send…
What is NUXT JS ? Nuxt JS is a front-end framework built on top of Vue JS which simplifies a lot of things for you out of the box like routing, importing components, adding plugins and more stuff. Amo…
Learning new thing is always been fun and interesting, but we all have to make sure that we learn in a structured way. I started learning Next JS last year but, I couldn't be able to understand it bec…
Introduction Before I dive into the topic for today getStaticProps, Let me do a brief intro to what Next.js is: As seen in the image above from Next.js official webpage, Next.js is known to be the Re…