rsnext/examples/with-passport
2020-05-27 17:51:11 -04:00
..
components Upgrade to Prettier 2 (#13061) 2020-05-18 15:24:37 -04:00
lib Upgrade to Prettier 2 (#13061) 2020-05-18 15:24:37 -04:00
pages Replaced express with next-connect (#11747) 2020-04-13 18:11:41 -05:00
package.json Replaced express with next-connect (#11747) 2020-04-13 18:11:41 -05:00
README.md Update references to zeit/next.js (#13463) 2020-05-27 17:51:11 -04:00

Passport.js Example

This example show how to use Passport.js with Next.js. The example features cookie based authentication with username and password.

The example shows how to do a login, signup and logout; and to get the user info using a hook with SWR.

A DB is not included. You can use any db you want and add it here.

The login cookie is httpOnly, meaning it can only be accessed by the API, and it's encrypted using @hapi/iron for more security.

Deploy your own

Deploy the example using Vercel:

Deploy with Vercel

How to use

Using create-next-app

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

npm init next-app --example with-passport with-passport-app
# or
yarn create next-app --example with-passport with-passport-app

Download manually

Download the example or clone the repo:

curl https://codeload.github.com/vercel/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-passport
cd with-passport

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Deploy it to the cloud with Vercel (Documentation).