Skip to content

Example of a Next.js application with api routes that enable passport.js authentication and cookie sessions.

Notifications You must be signed in to change notification settings

andycmaj/nextjs-passport-session-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Passport session auth example

How to use

Using create-next-app

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

npx create-next-app --example with-passport-session-auth with-passport-app
# or
yarn create next-app --example with-passport-session-auth with-passport-app

Download manually

Download the example:

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

Set required environment variables. Use .env.template if you use a dotenv tool.

export GITHUB_CLIENTID=<your github app's client id>
export GITHUB_CLIENTSECRET=<your github app's client secret>

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Deploy it to the cloud with now (download)

now

Notes

This example demonstrates using passport in NextJS API routes for OAuth connection flows.

Takes example of the fact that Next's micro-based API routes are compatible with connect-style middleware, with a little work.

Most of the meat of the example is in how we configure passport to work as NextJS middleware.

TODO

  • add CRSF mitigation
  • add JWT session token

About

Example of a Next.js application with api routes that enable passport.js authentication and cookie sessions.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published