Tabs
- Apple
- Orange
- Banana
- Apple 2
- Orange 2
- Banana 2
function HelloCodeTitle(props) {
let a = 1;
return <h1>Hello, {props.name}</h1>;
}
This is an orange ๐
This is a banana ๐
This is an orange ๐
This is a banana ๐
Synced with:
- Apple 2
- Orange 2
- Banana 2
/src/components/HelloCodeTitle.ts
function HelloCodeTitle(props) {
let a = 1;
return <h1>Hello, {props.name}</h1>;
}
This is an orange ๐
This is a banana ๐
- NodeJS
- GoLang
- Python
- Other Frameworks
Important
For other backend frameworks, you can follow our guide on how to spin up a separate server configured with the SuperTokens backend SDK to authenticate requests and issue session tokens.
- Express
- Hapi
- Fastify
- Koa
- Loopback
- AWS Lambda / Netlify
- Next.js
- NestJS
function someNodeJSCodeForExpress() {
let a = 1;
callFunc(a);
}
function someNodeJSCodeForHapi() {
let a = 1;
callFunc(a);
}
- NodeJS
- GoLang
- Python
- Other Frameworks
Important
For other backend frameworks, you can follow our guide on how to spin up a separate server configured with the SuperTokens backend SDK to authenticate requests and issue session tokens.
- Express
- Hapi
- Fastify
- Koa
- Loopback
- AWS Lambda / Netlify
- Next.js
- NestJS
function someNodeJSCodeForExpress2() {
let a = 1;
callFunc(a);
}
function someNodeJSCodeForHapi2() {
let a = 1;
callFunc(a);
}
- ReactJS
- Angular
- Vue
- Plain JavaScript
- React Native
Note
To use SuperTokens with React Native you need to use the
To add login functionality, you need to build your own UI and call the APIs exposed by the backend SDKs. You can find the API spec here
supertokens-react-native
SDK. The SDK provides session management features.To add login functionality, you need to build your own UI and call the APIs exposed by the backend SDKs. You can find the API spec here
What type of UI are you using?
Prebuilt UICustom UI
What type of UI are you using?
Prebuilt UICustom UI
- This is an ordered list before the code snippet
- This is some text before the code snippet
function someReactCode() {
let a = 1;
callFunc(a);
}
- This is a list before the code snippet
- second item in the list before teh code snippet
This is some text
- Another list after the text
- some nested content
- nested content second item
- second item
function someVanillaJSCode() {
let a = 1;
callFunc(a);
}