intermediate#Passport.js#Authentication#Node.js
Using Passport.js for Authentication
Learn how to use Passport.js for authentication in your Node.js applications, and create a simple login system.
Introduction to Passport.js
Passport.js is a popular authentication middleware for Node.js that provides a comprehensive set of strategies for authenticating with various sources, such as databases, social media platforms, and more.
Installing Passport.js
To get started with Passport.js, you need to have Node.js and npm installed on your computer. You also need to install the Passport.js library. You can install these dependencies by running the following command:
npm install passport
Configuring Passport.js
To configure Passport.js, you can use the following code:
const passport = require('passport');
const LocalStrategy = require('passport-local').Strategy;
passport.use(new LocalStrategy({
usernameField: 'username',
passwordField: 'password'
}, (username, password, done) => {
// Verify the username and password
if (username === 'admin' && password === 'password') {
return done(null, { id: 1, username: 'admin' });
} else {
return done(null, false, { message: 'Invalid username or password' });
}
}));
Creating a Login System
To create a login system, you can use the following code:
const express = require('express');
const app = express();
app.post('/login', passport.authenticate('local', { successRedirect: '/', failureRedirect: '/login' }));
You can then use this login system to authenticate users in your application.