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 purpose, 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 the example using Vercel:
Execute create-next-app
with npm or Yarn to bootstrap the example:
npx create-next-app --example with-passport-and-next-connect with-passport-and-next-connect-app
# or
yarn create next-app --example with-passport-and-next-connect with-passport-and-next-connect-app
Deploy it to the cloud with Vercel (Documentation).