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
gunjan agarwalgunjanagarwal.hashnode.dev·Apr 21, 2024Web Storage APIsIn this blog, we explore the Web Storage API provided by modern web browsers. This API allows websites to store data directly within the user's browser. There are three main types of Web Storage APIs: Local Storage: Enables data storage across brows...17 likes·30 readsweb storage api
SANKALP HARITASHsankalp-haritash.hashnode.dev·Mar 13, 2024Exploring Cookies: Understanding Their Use and Real-Life ApplicationsCookies are an integral part of web browsing, playing a crucial role in enhancing user experiences and providing personalized content. In this post, we'll dive into the world of cookies, understanding their use, and exploring real-life applications t...15 likesSystem DesignReact
Vinit Rautvinitraut.hashnode.dev·Mar 13, 2024Web storage Part 1: Local storage📢 Introduction: Local storage is a type of web storage that is used to store data persistently on a user's device (browser). The ideal use case is to store non-sensitive information like - to store users' shopping cart details, so users can see thei...JavaScript
SANKALP HARITASHsankalp-haritash.hashnode.dev·Mar 9, 2024Exploring sessionStorage: A Guide to Temporary Data StorageIn the realm of web development, managing data efficiently is paramount to providing users with seamless experiences. One key player in this domain is sessionStorage, a client-side storage mechanism that offers temporary data storage within the user'...1 likeSystem DesignReact
SANKALP HARITASHsankalp-haritash.hashnode.dev·Mar 5, 2024Understanding Local Storage: Implementation and Real-Life ApplicationsLocal storage is a crucial aspect of web development, providing a means to store data within the user's browser. Unlike session storage, which persists data only for the duration of a page session, local storage allows data to persist across sessions...System DesignWeb Development
SANKALP HARITASHsankalp-haritash.hashnode.dev·Mar 1, 2024Understanding the Web Storage API:In the realm of web development, efficiently managing data storage on the client side is crucial for creating dynamic, user-friendly interfaces. The Web Storage API offers a powerful and intuitive solution, allowing web applications to store data loc...1 likeSystem Designweb storage
Pratham ShahforDevHubdevhubcommunity.hashnode.dev·Oct 22, 2023Exploring localStorage : Web APIWhat is localStorage? JavaScript is a versatile programming language that allows developers to create dynamic and interactive web applications. One of the key features it offers is the ability to store data locally on a user's device. This local stor...12 likes·154 readsJavaScript
Mustafa Dalgasft.hashnode.dev·Jul 3, 2022Watch and Handle Changes with Web Storage Api — Cross Tab CommunicationHeybooster is a client-based project. The data in the Heybooster changes depending on the client. The user can see different client information on different browser tabs under normal circumstances. However, we don’t want to show different client info...Front End Devweb storage api
Mustafa Dalgasft.hashnode.dev·Nov 21, 2021Storing and Using Last Visited Page in Vue JSIf a user has an ongoing transaction on a website, we would like them to continue from the last transaction to provide a better user experience. If a user registers on a website and then leaves the website after completing any step, we can ensure tha...Vue.jsstore