Best of AuthorizationApril 2023

  1. 1
    Article
    Avatar of bytebytegoByteByteGo·3y

    Password, Session, Cookie, Token, JWT, SSO, OAuth - Authentication Explained - Part 1

    Password, Session, Cookie, Token, JWT, SSO, OAuth - Authentication Explained - Part 1. We discuss the problems each method solves and how to choose the right authentication method for our needs. The diagram below shows where these methods apply in a typical website architecture and their meanings.

  2. 2
    Article
    Avatar of communityCommunity Picks·3y

    Next.js User Authentication and Authorization

    Learn how to implement secure user authentication and authorization in your Next.js app using NextAuth.js, a library that simplifies the process and provides various authentication providers and methods.

  3. 3
    Article
    Avatar of permitioPermit.io·3y

    Best Practices for Authorization in Microservices

    In a monolithic architecture, a single authorization point typically controls access to all resources. In a microservice architecture, it's common to embed the authorization logic in the application code itself. Decentralizing the PDPs reduces the impact of any failures, increases availability, and enables horizontal scaling of the authorization process.

  4. 4
    Article
    Avatar of logrocketLogRocket·3y

    NestJS interceptors: Guide and use cases

    NestJS interceptors are class-annotated with injectable decorators and implement the interface. They are called before sending the request to a controller, while the method is called after the request has been processed by the controller and a response is returned. In the interceptor, we can do any processes and modify the request.

  5. 5
    Article
    Avatar of medium_jsMedium·3y

    Implementing Access Control in React Apps: A Complete Guide

    Learn about access control lists (ACLs) and how they are implemented in React apps. Understand their purpose and how they work.

  6. 6
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    How to Protect Your PWA – Web App Security Best Practices

    Progressive Web App is a type of web application that uses the latest web tech to deliver a user experience similar to that of a native mobile app. As with any application, PWAs can be vulnerable to security threats, which can compromise user data and damage the reputation. Use HTTPS and SSL/TLS to secure your PWA.