Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 22, 2022 01:53 am

Authenticating Node.js Applications With Passport


In this tutorial, we will develop a Node.js application from scratch and use the popular authentication middleware Passport to take care of our authentication concerns.


Passport's documentation describes it as a "simple, unobtrusive authentication middleware for Node" and rightly so.

By providing itself as a middleware, Passport does an excellent job at separating the other concerns of a web application from its authentication needs. It allows Passport to be easily configured into any Express-based web application, just like we configure other Express middleware such as logging, body-parsing, cookie-parsing, session-handling.


This tutorial assumes a basic understanding of Node.js and the  Express framework to keep focus on authentication, although we do create a sample Express app from scratch. We'll secure the app by adding routes to it and authenticating some of those routes.


Authentication Strategies


Passport provides us with 500+ authentication mechanisms to choose from. You can authenticate against a local or remote database instance or use the single sign-on using OAuth providers for Facebook, Twitter, Google, etc. to authenticate with your social media accounts. IOr you can choose from an extensive list of providers which support authentication with Passport and provide a node module for that.


But don't worry: you don't need to include any strategy that your application does not need. All these strategies are independent of each other and packaged as separate node modules which are not included by default when you install Passport's middleware: npm install passport


In this tutorial, we will use the Local Authentication Strategy of Passport and authenticate the users against a locally configured Mongo DB instance, storing the user details in the database. This strategy lets you authenticate users in your Node.js applications using a username and password.


For using the Local Authentication Strategy, we need to install the passport-local module:


npm install passport-local


But wait: Before you fire up your terminal and start executing these commands, let's start by building an Express app from scratch and add some routes to it (for login, registration and home) and then try to add our authentication middleware to it. Note that we will be using Express 4 for the purpose of this tutorial, but with some minor differences Passport works equally well with Express 3.


Setting Up the Application


If you haven't already, then go ahead and install Express by executing the snippet in your terminal:


npm install express --save


You can also install the express-generator with the following code snippet:


npm install -g express-generator


Executing express passport-mongo on the terminal will generate a boilerplate application in your specified directory .The generated application structure should look like this:


Initial Application StructureInitial Application StructureInitial Application Structure


Let's remove some of the default functionality that we won't be making use of. You can go ahead and delete the users.js route and remove its references from the app.js file.


Adding Project Dependencies


Open up package.json and add the dependencies for passport and passport-local module.



Since we will be saving the user details in MongoDB, we will use Mongoose as our object data modelling tool. Another way to install and save the dependency to package.json is by executing the code snippet:



The package.json file should look like this:


Added Mongoose DependenciesAdded Mongoose DependenciesAdded Mongoose Dependencies


Now, install all the dependencies and run the boilerplate application by executing


npm install && npm start


The above command will install all of the dependencies and also start the node server. You can check the basic Express app at http://localhost:3000/ but there is nothing much to see.


Very soon, we are going to change that by creating a full-fledged express app that:



  1. shows a registration page for a new user

  2. shows the login of a registered user

  3. authenticates the registered user with Passport


Creating Mongoose Model


Since we will be saving the user details in Mongo, let's create a User Model in Mongoose and save that in models/user.js in our app.



Basically, we are creating a Mongoose model using which we can perform CRUD operations on the underlying database.


Configuring Mongo


If you do not have Mongo installed locally then we recommend that you use cloud database services such as Modulus or MongoLab. Creating a working MongoDB instance using these is not only free but is just a matter of few clicks.


After you create a database on one of these services, it will give you a database URI likemongodb://<dbuser>:<dbpassword>@novus.modulusmongo.net:27017/<dbName> which can be used to perform CRUD operations on the database. It's a good idea to keep the database configuration in a separate file which can be pull up as and when needed. As such, we create a db.js file in the root directory which looks like:



If you're like me, you are using a local Mongo instance then it's time to start the mongod daemon and the db.js should look like



Now we use this configuration in app.js and connect to it using Mongoose APIs:



Configuring Passport


Passport just provides the mechanism to handle authentication leaving the onus of implementing session-handling ourselves and for that we will be using express-session. Open up app.js and paste the code below before configuring the routes:



 

This is needed as we want our user sessions to be persistent in nature. Before running the app, we need to install express-session and add it to our dependency list in package.json. To do that type npm install --save express-session


Serializing and Deserializing User Instances


Passport also needs to serialize and deserialize user instance from a session store in order to support login sessions, so that every subsequent request will not contain the user credentials. It provides two methods serializeUser and deserializeUser for this purpose. The serializeUser function is used to persist a users data into session after a successful authentication while a deserializeUser is used to retrieve a users data from the session.


Create a new folder passport and create a file init.js with the following code snippets



Using Passport Strategies


We will now define Passport's strategies for handling login and signup. Each of them would be an instance of the Local Authentication Strategy of Passport and would be created using the passport.use() function. We use connect-flash to help us with error handling by providing flash messages which can be displayed to user on error. This can be installed by running npm i connect-flash


Login Strategy


Create a login.js file in the passport folder. The login strategy looks like this:



The first parameter to passport.use() is the name of the strategy which will be used to identify this strategy when applied later. The second parameter is the type of strategy that you want to create, here we use the username-password or the LocalStrategy. It is to be noted that by default the LocalStrategy expects to find the user credentials in username & password parameters, but it allows us to use any other named parameters as well. The passReqToCallback config variable allows us to access the request object in the callback, thereby enabling us to use any parameter associated with the request.


Next, we use the Mongoose API to find the User in our underlying collection of Users to check if the user is a valid user or not. The last parameter in our callback : done denotes a useful method using which we could signal success or failure to Passport module. To specify failure either the first parameter should contain the error, or the second parameter should evaluate to a false. To signify success the first parameter should be null and the second parameter should evaluate to a truthy value, in which case it will be made available on the request object


Since passwords are inherently weak in nature, we should always encrypt them before saving them to the database. For this, we use bcryptjs to help us out with encryption and decryption of passwords.


In the login.js file, we would install bcryptjs by executing the command: npm install bcryptjs and adding the following code snippets to the login.js file just below the passport.use() function.



If you are feeling uneasy with the code snippets and prefer to see the complete code in action, feel free to browse the code here.


Registration Strategy


Now, we would create a signup.js file in the passport folder and define the next strategy which will handle registration of a new user and creates his or her entry in our underlying Mongo database:



Here, we again use the Mongoose API to find if any user with the given username already exists or not. If not, then create a new user and saves the user information in Mongo. Else return the error using the done callback and flash messages. Note that we use bcryptjs for creating the hash of the password before saving it.


Creating Routes


If we were to see a birds eye view of our application, it would look like:


Birds Eye View of Our ApplicationBirds Eye View of Our ApplicationBirds Eye View of Our Application


We now define our routes for the application in the following module which takes the instance of Passport created in app.js above. Save this module in routes/index.js



The most important part of the above code snippet is the use of passport.authenticate() to delegate the authentication to login and signup strategies when a HTTP POST is made to /login and /signup routes respectively. Note that it is not mandatory to name the strategies on the route path and it can be named anything.


Creating Jade Views


In the views folder of our application, we should see .jade files. Jade is a templating engine, primarily used for server-side templating in NodeJS. It is a powerful way of writing markup and rendering pages dynamically using Express. It gives a lot more flexibility compared to using a static HTML file. To learn more about Jade and how it works, you can check out the documentation.


Next, we create the following four views for our application: 




  1. layout.jade contains the basic layout & styling information.


  2. index.jade contains the login page containing the login form and giving option to create a new account.


  3. register.jade contains the registration form.


  4. home.jade says hello and shows the logged in user's details.



In the index.jade file, we will include the following code snippets:



In the register.jade file, we'll include the following code snippets:



In the home.jade file, we'll include the following code snippets:



Now the registration page looks like this:


registration-pageregistration-pageregistration-page

The Login page looks like this:


Login Page for Our Passport AppLogin Page for Our Passport AppLogin Page for Our Passport App

 


And the details page looks like this:


details-pagedetails-pagedetails-page

Implementing Logout Functionality


Passport, being a middleware, makes it possible to add certain properties and methods on request and response objects. Passport has a very handy request.logout() method which invalidates the user session apart from other properties.


So, it's easy to define a logout route:



Protecting Routes


Passport also gives the ability to protect access to a route which is deemed unfit for an anonymous user. This means that if some user tries to access http://localhost:3000/home without authenticating in the application, he will be redirected to home page by doing



Conclusion


Passport is not the only player in this arena when its comes to authenticating Node.js applications, but the modularity, flexibility, community support and the fact that its just a middleware makes Passport a great choice.


For a detailed comparison between the two, here is an interesting and informative perspective from the developer of Passport himself.


You can find the full source code for the example in our GitHub repo.


If you want to see what else you can do with Node.js, check out the range of Node.js items on Envato Market, from a responsive AJAX contact form to a URL shortener, or even a database CRUD generator.


This post has been updated with contributions from Mary Okosun. Mary is a software developer based in Lagos, Nigeria, with expertise in Node.js, JavaScript, MySQL, and NoSQL technologies.



Original Link: https://code.tutsplus.com/tutorials/authenticating-nodejs-applications-with-passport--cms-21619

Share this article:    Share on Facebook
View Full Article

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code