Manideepkunjetimanideep.hashnode.dev·Sep 25, 2023Demystifying JSON Web Tokens (JWTs): A Comprehensive GuideIn the world of web development and security, JSON Web Tokens (JWT) have become an essential tool for Authentication and Authorization. JWTs provide a secure and compact way to transmit information between client and server. In this guide, we will ex...Charan MC and 2 others are discussing this3 people are discussing thisDiscuss·34 likes·52 readsJWTCheers dude! that was a pretty much informative and short as well 😄... back to form after long tym... 5
Stephan Mingoesblog.stephanmingoes.me·Sep 28, 2023Authentication using NextJS Client and NestJS ServerOverview The authentication flow works as follows: User submits login form Next.js makes a request to the /login API endpoint Nest.js generates a JWT access token and sets it as a cookie The access token cookie is sent with subsequent requests N...DiscussNext.js
Kinstakinsta.hashnode.dev·Sep 27, 2023Why Your Site's Slow: The Cookie Problem & How to Fix ItIs your website feeling a bit slow? Using up more data? Often, 'cookies' are to blame. They're useful, but too many attached to your site can drag it down. Good news: There's a simple fix. Using cookie-free domains can speed things up. If you're usin...Discusscookies
Manideepkunjetimanideep.hashnode.dev·Sep 25, 2023Demystifying JSON Web Tokens (JWTs): A Comprehensive GuideIn the world of web development and security, JSON Web Tokens (JWT) have become an essential tool for Authentication and Authorization. JWTs provide a secure and compact way to transmit information between client and server. In this guide, we will ex...Charan MC and 2 others are discussing this3 people are discussing thisDiscuss·34 likes·52 readsJWTCheers dude! that was a pretty much informative and short as well 😄... back to form after long tym... 5
Prajwal Haniyaprajwalhaniya.hashnode.dev·Sep 19, 2023How authentication system works in web apps?|PART-1| Techletter #44In this series, let's dive into the complete engineering mechanism of how an authentication system works. It is one of the fundamental building blocks of most of the software applications. Here, let's implement it with nodejs and passportjs . We will...Discuss·1 likeauthentication
Kishan Kumarwww.0xkumar.com·Sep 14, 2023Building a Custom Authentication Flow in Next.js 13 from ScratchThis article is a follow-up to my previous article, where I discussed the basics of authentication. I try to simplify the login and sign-up process. You can refer to that article here: https://www.0xkumar.com/how-authentication-works-a-step-by-step-e...Discuss·10 likes·32 readsNext.js
Josué Tchirktemajosue.hashnode.dev·Aug 30, 2023Session, Cookies, JWT, Token, SSO, et OAuth 2.0 pour les débutantsFirst, solve the problem. Then write the code – John Johnson J'ai pris la décision d'écrire cette note afin de partager et d'expliquer quelques concepts liés à la sécurité. J'espère sincèrement que vous prendrez plaisir à la lire et que ces informat...Discuss·50 readsJSON Web Tokens (JWT)
vivek sharmaqualityassurance.hashnode.dev·Aug 22, 2023Cookie TestingWhat is a cookie? A cookie is a little piece of data that a web server stores on the client side. Each time the browser requests a page from the server, this information is transmitted back to the server. Cookies often include customized user data or...Discuss·1 like·158 readsautomation testing
Diwakardiwakarkashyap.hashnode.dev·Aug 21, 2023Cookies vs Local Storage in JavaScriptBoth cookies and localStorage are ways to store data on the client's side, but they have different purposes, use-cases, and characteristics. Here's a comparison of the two: Lifespan: Cookies: Can have a set expiration date. If not set, they will ex...Discusscookies
Mayank Singhmayankonweb.hashnode.dev·Aug 19, 2023Token Authentication: An Overview of Sessions and JSON Web TokensWhen it comes to user authentication, there are two main approaches: sessions and tokens. In this blog post, we'll take a closer look at both approaches, with a focus on JSON Web Tokens (JWT). Sessions Sessions involve a stateful session between the ...DiscussMERN stackJWT
Pathik Shahpathik455.hashnode.dev·Aug 15, 2023JWT (JSON Web tokens) vs. Session CookiesSession Cookie-based approach: 1. Server generates a "sessionId" (signs it using "secret key"), and (a) saves the sessionId in a sessionDB, and (b) sends a cookie with the sessionId to the browser (client side). 2. The browser (client side) receiv...Discuss·2 likesJWT