Understanding Sessions in Node.js and Express: A Beginner’s GuideIn web development, managing user sessions is crucial for maintaining stateful interactions between clients and servers. Sessions enable…Feb 13Feb 13
getServerSideProps() — Nextjs — Data FetchingWhen you use getServerSideProps in a page component, the data fetching code you place inside it runs on the server side when the page is…Nov 6, 2023Nov 6, 2023
Data fetching -Nextjs- with getStaticProps()getStaticProps is typically used for SSG. During the build process, Next.js generates HTML pages for each route, and these pages can be…Nov 6, 20231Nov 6, 20231
How To Start Learning Software (Complete Guide)Learning software is a valuable skill, and it typically involves a structured approach. Here’s a roadmap to help you get started with…Nov 3, 2023Nov 3, 2023
React useRef() UsageuseRef is a Hook in React that provides a way to create and maintain a mutable reference to a DOM element or any other value that you want…Nov 3, 2023Nov 3, 2023
React Props UsageIn React, props (short for “properties”) are a way to pass data from a parent component to a child component. Props allow you to make your…Nov 2, 2023Nov 2, 2023
TanstackQuery Action() UsageTip: Use action() in Tanstack Query to perform a wide range of data manipulations, like filtering, sorting, grouping, and more. It's your…Nov 2, 2023Nov 2, 2023
Tanstack Query for data fetchAfter we export and import our fetch function for data and other responses we can get that data using by useQueryOct 30, 2023Oct 30, 2023