rsnext/examples/with-supertokens
Ankit Tiwari 14b7b37a84
Update with-supertokens example (#66827)
Updates the with-supertokens example to replace `getSSRSession` usage
with manual JWT parsing in SSR as shown in
https://github.com/supertokens/create-supertokens-app/pull/107

Co-authored-by: Sam Ko <sam@vercel.com>
2024-06-14 18:06:20 +00:00
..
app Update with-supertokens example (#66827) 2024-06-14 18:06:20 +00:00
assets chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
public examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
.gitignore examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
middleware.ts Updates with-supertokens example app (#60901) 2024-01-20 00:35:28 +00:00
next.config.js chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
package.json Update with-supertokens example (#66827) 2024-06-14 18:06:20 +00:00
README.md examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00
tsconfig.json examples: Updates with-supertokens example app (#58525) 2023-12-04 16:17:46 -06:00

SuperTokens App with Next.js app directory

This is a simple application that is protected by SuperTokens. This app uses the Next.js app directory.

How to use

Using create-next-app

npx create-next-app --example with-supertokens with-supertokens-app
yarn create next-app --example with-supertokens with-supertokens-app
pnpm create next-app --example with-supertokens with-supertokens-app
  • Run yarn install

  • Run npm run dev to start the application on http://localhost:3000.

Using create-supertokens-app

  • Run the following command
npx create-supertokens-app@latest --frontend=next
  • Select the option to use the app directory

Follow the instructions after create-supertokens-app has finished

Notes

  • To know more about how this app works and to learn how to customise it based on your use cases refer to the SuperTokens Documentation
  • We have provided development OAuth keys for the various built-in third party providers in the /app/config/backend.ts file. Feel free to use them for development purposes, but please create your own keys for production use.