Manya LambaforWeb Securitywebsecurity-bymn.hashnode.dev·Dec 19, 2024Session HijackingIntroduction: A Digital Heist in Plain Sight Imagine shopping online, adding items to your cart, and preparing to check out—only to find items you didn’t add. This could mean you’re a victim of session hijacking, where hackers steal your active sessi...34 readsDeveloper
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
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
Alpit Kumaralpit.hashnode.dev·Aug 1, 2024Day 20 - A Friendly Guide to LocalStorage and SessionStorage in JavaScriptScreenshot:- Hey there! Have you ever wondered how websites remember your preferences or keep you logged in even after you close the tab? Well, that's where LocalStorage and SessionStorage come into play. In this article, we’ll dive into these two f...JavaScript
Rigal Patelmastering-javascript-decorators.hashnode.dev·Jul 15, 2024Securing Web Storage: LocalStorage and SessionStorage Best PracticesIntroduction to Web Storage LocalStorage and SessionStorage are key-value storage mechanisms available in modern web browsers. They allow developers to store data directly on the client side, persisting even after the browser window is closed. LocalS...websecurity
Hooman Pegahmehrappsupport.academy·Jul 5, 2024Play by Play: NodeJS Express Session's storage configurationSetting up sessions and using express-session in an Express application is essential for managing user state across multiple requests. Why We Need Sessions Stateful Interactions: HTTP is a stateless protocol, meaning each request from a client to a ...Play by Play: Nodejs App DevelopmentNode.js
Aayush Paigwaraayushpaigwar.hashnode.dev·Jun 22, 2024How to Use Shared Preferences to Keep Users Logged In on Flutter AppsNeed for Managing the Session in Flutter Apps 🤔 Managing user sessions is crucial for providing a seamless user experience in mobile applications. In this blog, you will learn how to store and save the login session using shared_preferences in a Flu...175 readsFlutter
Asfia Aimanasfiaaiman.hashnode.dev·Jun 12, 2024Understanding Laravel Authentication: Best Practices and TipsIn the realm of Laravel development, user authentication serves as the gatekeeper, ensuring only authorized individuals access your application's valuable resources. But with an array of options at your disposal, choosing the most suitable authentica...oauth
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
Subham Dashsubhamdash.hashnode.dev·Mar 24, 2024JavaScript Session StorageIn the realm of web development, creating seamless user experiences is paramount. One powerful tool in a developer's arsenal for achieving this goal is session storage. In this article, we'll delve into session storage, understand its capabilities, a...179 readssessionStorage