SShubhaminonline-offline-status-in-react.hashnode.dev·Dec 5, 2024 · 3 min readOnline/Offline Status in React: Tracking ConnectivityIn web applications, detecting online and offline status is important to provide a smooth user experience. For example, when a user is offline, you can inform them about their connectivity status and offer features like offline mode. A great example ...00
SShubhaminlazyloadingreact.hashnode.dev·Dec 5, 2024 · 2 min readLazy Loading in React: Optimizing App PerformanceImagine you have a large website with many pages, but you don’t want everything to load at once when the user visits your website. It would be slow and frustrating. Lazy loading helps by only loading parts of the website as needed, instead of all at ...00
SShubhaminshubham5.hashnode.dev·Jun 19, 2024 · 4 min readUnderstanding Access Tokens and Refresh Tokens in Web ApplicationsIn modern web applications, security and efficient session management are paramount. Access tokens and refresh tokens play a crucial role in achieving secure authentication and maintaining user sessions. Let's delve into what these tokens are, their ...00
SShubhaminshubham5.hashnode.dev·Jun 19, 2024 · 3 min readSimple Authentication and Authorization in Node.js with JWT: A Teacher-Student ExampleProject Structure Create a folder structure for our Node.js project: codeteacher-student-example-simple ├── modules │ └── user.js ├── routes │ ├── authRoutes.js │ └── studentRoutes.js ├── .env ├── app.js └── package.json Step-by-Step Implement...00
SShubhaminshubham5.hashnode.dev·Jun 18, 2024 · 6 min readHow to make Accordion component in React.Namaste everyone!🙏 Hope you are doing well, today we are going to build an Accordion component in react from scratch and without using any external library. Accordion menus are very helpful, you can make a list of items in them. List of inputs like ...00