3 posts tagged with "auth"
View All TagsRust Auth Libraries
A Practical Guide for JWT Authentication Using Node.js and Express
Introduction
Traditional authentication strategy makes use of sessions and cookies, but scaling these solutions is very difficult — as some kind of state is maintained by the server. JWT, on the other hand, provides a stateless solution for authentication, and stateless applications are pretty easy to scale.