passport
Installation
SKILL.md
Passport.js
Passport.js is authentication middleware for Node.js. It supports 500+ authentication strategies including local username/password, OAuth, JWT, and more.
Quick Start
npm install passport express-session
npm install passport-local # For username/password
Basic Setup
// app.ts
import express from 'express'
import session from 'express-session'
import passport from 'passport'