Sakshi from KushoAIsoftware-deep-dives.hashnode.dev·Dec 10, 2024Storage Wars: Choosing the Right Client-Side Storage SolutionThis blog is written by Jeremy Rivera at KushoAI. We're building the fastest way to test your APIs. It's completely free and you can sign up here. When building an application, a difficult choice we as developers often face is the challenge of storin...Web Development
Sagnik Mukherjeesagnikmukherjee.hashnode.dev·Dec 2, 2024How to Use Room Database: A Step-by-Step GuideFirst of all, Room is not a database; the actual database here is SQLite. Room is a library in the Jetpack Framework that simplifies tasks and acts as a bridge between SQLite and your code. Why Do We Use ROOM Database? The annotations are simple, re...Android
0gheneVokepopxzn.hashnode.dev·Dec 1, 2024How To Cache Data Using Local StorageCaching data is the process of storing data in a fast, accessible storage layer (the cache) to improve performance and reduce the time needed to retrieve frequently accessed information. Caches can exist in different layers of a system like the disk,...localstorage
Arnab Bhattacharyyanotesfrontend.hashnode.dev·Nov 25, 2024Developing a React and TailwindCSS Notes App Using Only Local Storage🚀 Project Overview As a frontend developer, I always challenge myself to build useful applications with the latest technologies. Recently, I created a Notes App that lets users easily add, manage, and organize their notes—all without a backend! The ...React
Abhishek Rautsweabhishek.hashnode.dev·Nov 20, 2024Local Storage in JavaScript: Why Do We Need JSON.stringify()? 🤔In the world of client-side storage, localStorage is like the superhero of web development. It lets you store data directly in the browser, so even if the user closes the browser or refreshes the page, the data stays safe. 🙌 But, here's the catch—lo...localstorage
Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Nov 17, 2024Working with LocalStorage in JavaScriptLocalStorage revolutionizes development by enabling apps to store data directly in a browser. This allows for persistent, seamless, and personalized user experiences. Today, we will delve into LocalStorage, its practical applications, and projects de...10 likesPersistent Data
Arkadipta Kunduarkadiptakundu.hashnode.dev·Oct 25, 2024🗳️ Building an Online Voting Platform: Challenges, Solutions, and Key LearningsHey, everyone! 👋 Recently, I worked on a simple and secure online voting platform for my college mini-project, and I wanted to share how I did it. From managing user registrations to setting up an admin approval system, this project taught me a lot ...16 likesjs
Vitthal Korvanvitthal-korvan.hashnode.dev·Oct 2, 2024Local Storage and Session StorageLocal Storage Local storage in JavaScript is a web storage feature that allows websites to store key-value pairs in a web browser, providing a way to persist data across sessions. It is part of the Web Storage API, which includes both localStorage an...1 likeAdvanced JavaScript and DOMlocalstorage
Rishi Bakshirishibakshi.hashnode.dev·Sep 22, 2024Avoiding Common Mistakes with Browser APIs in Next.jsOne common mistake that beginners make when working with Next.js is incorrectly using browser APIs like window.localStorage in client components. Understanding how Next.js handles server-side rendering (SSR) and client-side rendering (CSR) is crucial...11 likesYou Don't Know Next.jsBeginner Developers
ANSH VARUNblog.anshvarun.com·Sep 21, 2024Storage of WebWeb storage provides essential benefits to modern application to store data in browser resulting in improved user experience. Sometimes, internet connections can be unreliable or unavailable, which is why offline functionality and reliable performanc...localstorage