SShayintoddlerstech.hashnode.dev·Jun 29 · 3 min readJWT Authentication in Node.js Explained Simplylets start with understanding what is authentication. Lets say 2 users visit your webapp. How will your webapp differentiate between the two ? to differentiate you will ask them their credentials that00
AZAYESHA ZAFREEN Sinayeshaa.hashnode.dev·Jun 20 · 12 min readI Built a Role-Based Approval System From Scratch — Here's Why One Login Page Took Me Three Architecture RewritesBy Ayesha Zafreen S | 3rd Year CS-IoT Student | Sri Sairam Engineering College The Question That Started Everything "Can users register themselves on the portal?" Simple question. I almost said yes w00
SUSamuel Umohinumohsg.hashnode.dev·Jun 11 · 18 min readBuild a Secure Authentication System in Golang with Gin, JWT, and PostgresSecuring user data is a very important part of building any application. At the core of this security are two foundational concepts: authentication and authorization. While these terms are often used 00
KTKushagra Trivediinkushagrablogs.hashnode.dev·May 10 · 5 min readJWT Authentication in Node.js Explained SimplyEvery 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 o00
JJJainam Jaininunderstanding-javascript-methods.hashnode.dev·May 10 · 4 min readUnderstanding Sessions, Cookies, and JWT Authentication Authentication is one of the most important parts of backend development. Whenever users: log in access accounts stay signed in the server needs a way to identify them. This is where: sessions 00
KSKanishka Shashiinnodej.hashnode.dev·May 10 · 9 min readJWT Authentication in Node.js Explained SimplyAuthentication is one of the most important parts of modern web development. Almost every application today requires users to log in and access protected resources securely. Whether it is a social med00
PKPratham Kumarinwithprathamkumar.hashnode.dev·May 9 · 9 min readSessions vs JWT vs Cookies: Understanding Authentication ApproachesIntroduction Authentication is one of the most important parts of modern web applications. Whether you are building a social media platform, an e-commerce app, or a dashboard for a SaaS product, you n00
KTKushagra Trivediinkushagrablogs.hashnode.dev·May 9 · 6 min readSessions vs JWT vs Cookies Topics to Cover What sessions are What cookies are What JWT tokens are Stateful vs stateless authentication Differences between session-based auth and JWT When to use each method What sessions00
JMJanardan Mondalinjanardanm.hashnode.dev·May 9 · 5 min readJWT Authentication in Node.jsModern web applications need a way to identify users securely.When you log into a website, the server must remember who you are while you browse protected pages, access APIs, or perform actions like p00
SSantrainblog-santra.hashnode.dev·May 8 · 5 min readJWT Authentication in Node.js Explained SimplyEvery application that has user accounts needs to answer one question on every request: who is this, and are they allowed to do this? That's authentication. And the way you implement it shapes how you00