Socket
Socket
Sign inDemoInstall

@nestjs/passport

Package Overview
Dependencies
Maintainers
2
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nestjs/passport

Nest - modern, fast, powerful node.js web framework (@passport)


Version published
Weekly downloads
1.1M
increased by1.81%
Maintainers
2
Weekly downloads
 
Created

What is @nestjs/passport?

@nestjs/passport is a NestJS module that provides integration with the Passport authentication middleware. It allows developers to implement various authentication strategies in a NestJS application, such as local, JWT, OAuth, and more.

What are @nestjs/passport's main functionalities?

Local Authentication

This feature allows you to implement local authentication using a username and password. The code sample demonstrates how to set up a local strategy with Passport.

const passport = require('passport');
const LocalStrategy = require('passport-local').Strategy;

passport.use(new LocalStrategy(
  function(username, password, done) {
    User.findOne({ username: username }, function (err, user) {
      if (err) { return done(err); }
      if (!user) { return done(null, false); }
      if (!user.verifyPassword(password)) { return done(null, false); }
      return done(null, user);
    });
  }
));

JWT Authentication

This feature allows you to implement JWT authentication. The code sample demonstrates how to set up a JWT strategy with Passport.

const passport = require('passport');
const { Strategy: JwtStrategy, ExtractJwt } = require('passport-jwt');

const opts = {
  jwtFromRequest: ExtractJwt.fromAuthHeaderAsBearerToken(),
  secretOrKey: 'your_jwt_secret'
};

passport.use(new JwtStrategy(opts, function(jwt_payload, done) {
  User.findById(jwt_payload.sub, function(err, user) {
    if (err) {
      return done(err, false);
    }
    if (user) {
      return done(null, user);
    } else {
      return done(null, false);
    }
  });
}));

OAuth Authentication

This feature allows you to implement OAuth authentication using providers like Google. The code sample demonstrates how to set up a Google OAuth strategy with Passport.

const passport = require('passport');
const GoogleStrategy = require('passport-google-oauth20').Strategy;

passport.use(new GoogleStrategy({
  clientID: 'YOUR_GOOGLE_CLIENT_ID',
  clientSecret: 'YOUR_GOOGLE_CLIENT_SECRET',
  callbackURL: 'http://www.example.com/auth/google/callback'
},
function(token, tokenSecret, profile, done) {
  User.findOrCreate({ googleId: profile.id }, function (err, user) {
    return done(err, user);
  });
}));

Other packages similar to @nestjs/passport

FAQs

Package last updated on 15 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc