Docs

currentUser()

The currentUser helper returns the Backend API User object of the currently active user. It can be used in Server Components, Route Handlers, and Server Actions.

Under the hood, this helper:

app/page.tsx
import { currentUser } from '@clerk/nextjs/server';

export default async function Page() {
  const user = await currentUser();

  if (!user) return <div>Not signed in</div>;

  return <div>Hello {user?.firstName}</div>;
}

Feedback

What did you think of this content?