Anusha Tomardifference-between-cjs-and-esm.hashnode.dev·Dec 6, 2024Cookies and Sessions: Everything You Need to Know!Imagine walking into your favorite coffee shop. Every morning, the barista knows exactly what you want - a caramel latte with extra foam. But what if they forgot who you were each time you walked in? Frustrating, right? This is exactly what happens o...Discuss·10 likescookies
JealousGxblog.jealous.dev·Dec 5, 2024Mastering Cookies in Node.js and Go: Advanced Techniques for Scalable and Secure Web ApplicationsIn modern web development, cookies play a pivotal role in managing user sessions, preferences, and state across web applications. This guide dives deep into cookies' advanced usage in Node.js and Go, providing practical examples, best practices, and ...Discusscookies
Abdul Rahman Moinrefresh-token-vs-access-token.hashnode.dev·Nov 29, 2024Refresh Token vs Access TokenWhat is an Access Token? An access token, typically JWT, is an encrypted thing that saves the time of the user and the server cost the website owner. But what actually is it? It is an encrypted token or string that is equal (when it got decrypted) to...Discussrefresh-token
Himanshu Sonihimanshusoni30.hashnode.dev·Nov 4, 2024Retrieve cookies from HTTP response header using PostmanScenario We aim to make a GET API call to the customer database to validate user details and retrieve the session token, authentication token, and other related tokens as cookies from the server. These cookies are returned in the response header and ...DiscussAPI TESTING
Allan WANJIKUblog.allanwanjiku.tech·Oct 31, 2024Cookies Explained: Why Websites Remember YouCookies are a crucial part of the HTTP protocol. They allow the server to send data to the client, which the client stores and resubmits to the server. While they enable swift browsing, they are also vulnerable to abuse by hackers. Main uses of cooki...Discusswebsite tracking
Thirdy Gayaressoftware-engineer.thirdygayares.com·Oct 19, 2024What is Cookie?A cookie is a small piece of data that a web server sends to a user's web browser. The browser may store it on the user’s computer and then send it back to the server with subsequent requests. Cookies are primarily used to remember information about ...Discusscookies
porobertdevblog.porobert.dev·Oct 16, 2024Sessions, Cookies and AuthenticationAbout The goal of this article is to complement the lesson from The Odin Project curriculum. Initially was written for personal use to try to understand better how this work and make information stick to my brain, but I chose to make it public hoping...Discuss·68 readsBackendJavaScript
Utkarshblogs.utkarshrajput.com·Oct 16, 2024Authentication: Done the Right WayPrologue Authentication—a topic that brings joy to every developer's heart! Right up there with debugging and production outages. But, jokes aside, it’s crucial to get authentication right. Why? Because while you might enjoy seeing error logs, you de...DiscussReact
Vince CangerforWasp - full-stack with React & Node.jswasp-lang.hashnode.dev·Oct 10, 2024The Most Annoying Cookie Banner Ever Hackathon 🤬🍪I love cookies, but I hate cookie banners! We've all had enough of those annoying cookie consent banners that get in our way everyday on the internet. So in the spirit of Halloween and Hacktoberfest, I'm proud to present to you 🤬 THE MOST ANNOYING ...Discuss·20 likes#hacktoberfest
Atharv Sankpalatharvsankpal7.hashnode.dev·Oct 4, 2024Access Tokens and Refresh TokensAccess Token The Access Token is a small piece of data that contains user identity information, such as email, name, and user ID (_id). This token typically has a short lifespan, ranging from 5 to 15 minutes. Due to its comprehensive user information...DiscussToken Management