rsnext/examples/with-iron-session
Jesse Jafa 2828b01950
Fixing Redundant React imports on next.js/examples (#13384)
Per https://github.com/zeit/next.js/issues/12964

* with-ant-design
* with-dynamic-import
* with-iron-session
* with-monaco-editor
* with-next-page-transitions
* with-react-with-styles
* with-style-sheet
* with-why-did-you-render

Tested each example, working as intended, no additional issues presented
2020-05-26 15:03:58 +00:00
..
components Upgrade to Prettier 2 (#13061) 2020-05-18 15:24:37 -04:00
lib Update Examples for Fast Refresh (#13068) 2020-05-18 17:44:18 -04:00
pages Fixing Redundant React imports on next.js/examples (#13384) 2020-05-26 15:03:58 +00:00
now.json docs(examples): add with-iron-session example (#10973) 2020-04-07 10:47:00 -04:00
package.json Fixed with-iron-session to work on Windows systems (#13386) 2020-05-26 10:57:56 +02:00
README.md docs(examples): upgrade next-iron-session to v4 (#12398) 2020-05-02 00:04:03 -04:00

Example application using next-iron-session

This example creates an authentication system that uses a signed and encrypted cookie to store session data. It relies on next-iron-session.

It uses current best practices for authentication in the Next.js ecosystem.

Features:

  • Static Generation (SG), recommended example
  • Server-side Rendering (SSR) example in case you need it
  • Logged in status synchronized between browser windows/tabs using withUser hook and swr module
  • Layout based on the user's logged-in/out status
  • Session data is signed and encrypted in a cookie

next-iron-session also supports:

  • Express / Connect middlewares
  • Multiple encryption keys (password) to allow for seamless updates or just password rotation

Online demo at https://next-iron-session.now.sh/ 👀


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:

npx create-next-app --example with-iron-session with-iron-session-app
# or
yarn create next-app --example with-iron-session with-iron-session-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-iron-session
cd with-iron-session

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Deploy it to the cloud with Vercel (Documentation).