npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

redwood-clerk

v0.7.0

Published

Unofficial Clerk integration for RedwoodSDK

Readme

redwood-clerk

Unofficial Clerk integration for RedwoodSDK.

Minimal example: https://github.com/wobsoriano/redwood-clerk-minimal

Installation

npm install redwood-clerk

Quickstart

Add clerkMiddleware() to your app

clerkMiddleware() grants you access to user authentication state throughout your app.

In your entry point (src/worker.tsx) file, add the clerkMiddleware() helper to the defineApp function:

import { clerkMiddleware } from 'redwood-clerk/server';
import type { WithClerkContext } from 'redwood-clerk/server';

export type AppContext = WithClerkContext<{
  // Additional context
}>;

export default defineApp([
  setCommonHeaders(),
  clerkMiddleware(),
  render(Document, [...]),
]);

Configure Clerk Content-Security-Policy headers

In your src/app/headers.ts file, update the Content-Security-Policy header for Clerk to work correctly in your application:

import { frontendApi } from 'redwood-clerk/server';

const cspHeader = `
  default-src 'self';
  script-src 'self' 'strict-dynamic' 'nonce-${nonce}' https://${frontendApi} https://challenges.cloudflare.com;
  connect-src 'self' https://${frontendApi};
  img-src 'self' https://img.clerk.com;
  style-src 'self' 'unsafe-inline';
  frame-src https://challenges.cloudflare.com;
  object-src 'none';
  form-action 'self';
`

response.headers.set('Content-Security-Policy', cspHeader.replace(/\n/g, ''));

Add <ClerkProvider> to your app

Add the <ClerkProvider> component to your app's layout. This component provides Clerk's authentication context to your app.

import {
  ClerkProvider,
  SignInButton,
  SignUpButton,
  SignedIn,
  SignedOut,
  UserButton,
} from 'redwood-clerk';

export const AppLayout = ({ children }) => {
	return (
		<ClerkProvider>
		  <header>
        <SignedOut>
          <SignInButton />
          <SignUpButton />
        </SignedOut>
        <SignedIn>
          <UserButton />
        </SignedIn>
      </header>
			{children}
		</ClerkProvider>
	);
}

Create your first user

Run your project in development mode and go to http://localhost:5173

Read session and user data in your RedwoodSDK app

Server components

import { auth, clerkClient } from 'redwood-clerk/server'

export default async function Page() {
  const { userId } = await auth()

  // Protect the route by checking if the user is signed in
  if (!userId) {
    return <div>Sign in to view this page</div>
  }

  const user = await clerkClient().users.getUser(userId)

  return <div>Welcome, {user.firstName}!</div>
}

Client components

'use client'
import { useAuth } from 'redwood-clerk'

export default function Example() {
  const { isLoaded, isSignedIn, userId } = useAuth()

  // Use `isLoaded` to check if Clerk is loaded
  if (!isLoaded) {
    return <div>Loading...</div>
  }

  // Use `isSignedIn` to check if the user is signed in
  if (!isSignedIn) {
    return <div>Sign in to view this page</div>
  }

  return (
    <div>
      Hello, {userId}! Your current active session is {sessionId}.
    </div>
  )
}

License

MIT