TanStack Start Quickstart (Beta)
You will learn the following:
- Install
@clerk/tanstack-start
- Set your Clerk API keys
- Add
createClerkHandler()
- Add
<ClerkProvider />
- Protect your pages
Install @clerk/tanstack-start
Clerk's TanStack Start SDK gives you access to prebuilt components, React hooks, and helpers to make user authentication easier.
Run the following command to install the SDK:
Add createClerkHandler()
TanStack's createStartHandler()
creates a server-side handler that determines which routes and loaders need to be executed when the user hits a given route.
Clerk's createClerkHandler()
configures Clerk to handle authentication state for TanStack routes, allowing you to easily access user session information within your app.
Update your app's SSR entrypoint by wrapping createStartHandler()
in createClerkHandler()
, as shown in the following example:
Add <ClerkProvider>
to your app
The <ClerkProvider>
component wraps your app to provide active session and user context to Clerk's hooks and other components.
Add the <ClerkProvider>
component to your app's root route, as shown in the following example:
Protect your pages
Client-side
To protect your pages on the client-side, you can use Clerk's prebuilt control components that control the visibility of content based on the user's authentication state.
The following example uses the following components:
<SignedIn>
: Children of this component can only be seen while signed in.<SignedOut>
: Children of this component can only be seen while signed out.<UserButton />
: Shows the signed-in user's avatar. Selecting it opens a dropdown menu with account management options.<SignInButton />
: An unstyled component that links to the sign-in page. In this example, since no props or environment variables are set for the sign-in URL, this component links to the Account Portal sign-in page.
Server-side
To protect your routes, create a server function that checks the user's authentication state via the getAuth()
method. If the user is not authenticated, they are redirected to a sign-in page. If authenticated, the user's userId
is passed to the route, allowing access to the <Home />
component, which welcomes the user and displays their userId
. The beforeLoad()
method ensures authentication is checked before loading the page, and the loader()
method returns the user data for use in the component.
Create your first user
Run your project with the following command:
Visit your app's homepage at http://localhost:3000. Sign up to create your first user.
Create custom sign-up and sign-in pages
Learn how add custom sign-up and sign-in pages with Clerk components.
Read user and session data
Learn how to use Clerk's hooks and helpers to access the active session and user data in your TanStack Start app.
Customization & localization
Learn how to customize and localize the Clerk components.
Clerk components
Learn more about Clerk's prebuilt components.
Feedback
Last updated on