© 2022 Hashnode
#passport
In this series of posts I will create an Authentication system with Passport using social auth and JWT. Let's use the combination of NestJs + Passport + Fastify to create a complete authentication sys…
Quick Introduction to PassportJS Requirements Guide on setup Here is a working example What is PassportJS? Passportjs is an authentication middleware for Node.js. A comprehensive set of strategies su…
In this post, we will learn how to implement NestJS Passport Authentication using the passport local strategy. Authentication is a key aspect of any production-level application. While there are many…
Short Story, Simple Story Okay, I am going to tell you a short story about someone who is willing to go to Bali (Indonesia) but is restricted because of some authentication dispute. I am just kidding,…
Passport js is a really flexible and unobtrusive authentication system for Node JS. It vastly simplifies authentication and can act as an auth session manager, or as an auth middleware. The package im…
In this section, we are going to be kicking off with the react (frontend part of our application). In the previous section, we developed our REST API and tested the endpoints using postman. Firstly, w…
Many applications are a mix of public and private pages. There are pages that are accessible to the general public while there are pages that are only opened to authorized users. These pages will requ…
"Passwordless" signups and logins are fast becoming a thing these days. The fact that users don't want to go through the stress of remembering which password or email they've used in creating accounts…
Before we Begin Ensure you have Node.js installed locally on your machine. Setup a google Developer Console account. Configuring your google credentials Head over to your Google API Dashboard A…
In this article, I’m going to demonstrate how to build a user registration and authentication system in ExpressJS. In the previous article, we set up a MongoDB connection using Mongoose. Here we’ll be…