ReactJs React Hooks - explained React Hooks were introduced in React 16.8 which allows functional components to have access to state and other features like performing an after effect when a particular condition is met or specific changes occur in the state(s) without having to write class components. In this article, I will
NextJs How to use SWR in Next JS - client-side data-fetching technique You've probably heard about SWR if you've lately worked with client-side data fetching in Next.js. It comes with useSWR, a React hook that simplifies all the difficult things in client-side data fetching (caching, revalidation, attention tracking, and so on).
NextJs Create Protected Routes In NextJS and NextAuth I'll show you exactly how to create protected routes in your NextJS application using NextAuth.
NextAuth How to implement NextAuth credentials provider with external API and login page In this post, we'll learn how to use NextAuth credentials provider with a custom backend and a custom login page.