Ccodewithdivyaincodewithdivya.hashnode.dev00Understanding Access Tokens and Refresh Tokens2d ago · 6 min read · Modern applications like Instagram, Gmail, Netflix, and banking apps need secure authentication systems. But users also expect a smooth experience without logging in repeatedly. This is where: AccessJoin discussion
SKSai Kishore Dasamantharaoinsaikishored.hashnode.dev00Stateless OTP Verification Without a Database2d ago · 8 min read · Database is redundant in OTP Flow Every OTP implementation stores state in a database in general. When a user requests sign-in, the backend generates a random OTP, stores it in a database, and sends iJoin discussion
NRNavdeep Rohillainauthentication-and-security-by-navdeep.hashnode.dev00Sessions vs JWT vs Cookies : Understanding AuthenticationMay 10 · 6 min read · Table of Contents What cookies are What sessions are What JWT tokens are Stateful vs stateless authentication Session-based vs JWT: the key differences When to use each method 1. What CookiesJoin discussion
DSDipali Sharmainsharmadipali14.hashnode.dev00JWT Authentication in Node.js Explained SimplyMay 10 · 6 min read · Introduction Modern web applications need a way to identify users securely. Whether you are logging into a social media platform, online banking system, or shopping website, authentication is the mechJoin discussion
MKMohd Kaifinmohdkaif.hashnode.dev00How JWT Auth Works in Node.jsMay 10 · 14 min read · You know that moment when you finish building your first Node.js API — routes work, data comes back clean — and then it hits you: anyone can call these endpoints. No login. No identity. Nothing stoppiJoin discussion
HBHimanshu Balaniinblog.himanshubalani.com00Stop Confusing Cookies, Sessions, and JWTs: The Definitive Guide to Authentication May 10 · 7 min read · When I first tried to build a login system, I asked a senior developer what I should use. He said, "Just use cookies." Another developer overheard and said, "No, cookies are dead, use JWTs." A third cJoin discussion
KTKushagra Trivediinkushagrablogs.hashnode.dev00JWT Authentication in Node.js Explained SimplyMay 10 · 5 min read · Every app has at least one page that requires a login. The question is: once a user logs in, how does your server remember that on every subsequent request? That's the authentication problem. JWT is oJoin discussion
RCRohit Chorneleinblog.rohitchornele.online00JWT Authentication in Node.js Explained SimplyMay 10 · 4 min read · Authentication is one of the most important concepts in backend development.Whenever users log into an application, the server needs a secure way to identify them in future requests. Modern applicatioJoin discussion
HBHimanshu Balaniinblog.himanshubalani.com00JWT Authentication in Node.js Explained May 10 · 6 min read · HTTP has a severe memory problem. By default, every time a user’s browser makes a request to your server, the server treats it like a complete stranger. It doesn't matter if the user just typed in theJoin discussion
KRkumar Rishabhinkumar-rishabh.hashnode.dev00JWT Authentication in Node.js Explained SimplyMay 10 · 3 min read · When building apps, one big question comes up: 👉 How does the server know who the user is? That’s where authentication comes in. Without authentication, anyone could access anyone’s data. Not good 😅Join discussion