MAmathew adetunjiinmaytheu.hashnode.dev·Sep 3, 2024 · 2 min readMiddleware in NestJS: A Comprehensive GuideMiddleware in web development plays a crucial role as a set of functions that are executed before the main logic of a request is processed. They act as interceptors or checkpoints, ensuring that specific conditions are met before allowing further exe...00
MAmathew adetunjiinmaytheu.hashnode.dev·Aug 7, 2022 · 2 min readAccess Token, Refresh token, and Refresh Token RotationWhat is Access Token? Access tokens are credentials encrypted using the JSON web token (jwt), access token contains data that grant access to protected resources on the server. The client (browser or app) is expected to attach the token to protected ...01W