Back to Next Js

next-connect and Passport

examples/with-passport-and-next-connect/README.md

16.2.51.7 KB
Original Source

next-connect and Passport

This example creates a basic CRUD app using next-connect and cookie-based authentication with Passport.js. The cookie is securely encrypted using @hapi/iron.

The example shows how to do a sign up, login, logout, and account deactivation. It utilizes SWR to fetch the API.

For demo purposes, the users database is stored in the cookie session. You need to replace it with an actual database to store users in db.js.

Deploy your own

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

bash
npx create-next-app --example with-passport-and-next-connect with-passport-and-next-connect-app
bash
yarn create next-app --example with-passport-and-next-connect with-passport-and-next-connect-app
bash
pnpm create next-app --example with-passport-and-next-connect with-passport-and-next-connect-app

Deploy it to the cloud with Vercel (Documentation).