Next.js

Sessions in Next js : A Comprehensive Guide

Sessions play an important role in creating dynamic and user intense applications. Sessions enable maintaining user-specific data which can be persisted across requests. In this article, we will discuss various aspects of start using Session in Next js in effective and efficient ways which will enable to creation of production-ready websites to provide industrial-level standards.

Sessions in Next js : A Comprehensive Guide Read More »

Next.js 13+ with Axios – Client Side & Server Side HTTP Calls with Error Handling

In this article, we will discuss in detail how to harness the power of Next js 13.2+ when combined with popular HTTP client Axios for building dynamic data-driven applications. We will discuss in detail how to use the Axios library on both Client-side and Server-Side to make various types of HTTP calls like GET or

Next.js 13+ with Axios – Client Side & Server Side HTTP Calls with Error Handling Read More »

Next.js useContext Examples, Advanced Usage with useReducer Tutorial

React Context API is a powerful feature which enables to management and shares state information across various sections of the Next js application. Using Context API we can share data without passing the props down manually at every level for same. In this guide, we will discuss how to set up and use Context API

Next.js useContext Examples, Advanced Usage with useReducer Tutorial Read More »

Next.js Protected Routes: The Hands-On Tutorial You Can’t Afford to Miss!

In this guide, we will discuss Next js Protected Routes using a demonstration example application. We will explore how to add guards or protection to the Next js routes so that we can control the access via the AccessContect component in step by step tutorial. A web application which deals with user data should have

Next.js Protected Routes: The Hands-On Tutorial You Can’t Afford to Miss! Read More »

How to Add Next.js Icons?

Next.js icons are an essential part of any Next.js project. They play a significant role in enhancing the aesthetic appeal and user-friendliness of an application. This guide seeks to provide an in-depth understanding of these icons and offer a practical approach to integrating and customizing them in your Next.js applications.

How to Add Next.js Icons? Read More »

Next.js Protected Routes: Sample Application, Use Cases, and Solutions

In this tutorial, we will discuss a very important aspect of web applications and how to implement protected routes in the Next Js application. Protected routes play a key role in managing user access and ensuring the security of web applications. This article will dive deep into the concept of protected routes in Next.js, illustrating

Next.js Protected Routes: Sample Application, Use Cases, and Solutions Read More »

3 Solutions for ‘window is not defined’ Error in Next.js with Examples

While working on the Next Js project, you may have faced an issue saying ‘window is not defined’. Next js provides a powerful framework, that helps to create server-side rendered applications and that is by using Javascript. But most of us face this ‘window’ or ‘document’ as an undefined issue because these are client-side available

3 Solutions for ‘window is not defined’ Error in Next.js with Examples Read More »

Next js Redirects – Client, Server Side and External Redirection Methods!

We will walk through a detailed guide on variour type of Redirection methods in Next js with various methods. In Next js, we can handle the redirects both on the Client-side as well as on the Server-side. In addition to this external redirects to open the link out of the application in a new tab

Next js Redirects – Client, Server Side and External Redirection Methods! Read More »