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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@wocha/remix

v0.1.0

Published

Remix / React Router v7 adapter for Wocha authentication (BFF pattern with httpOnly cookies)

Readme

@wocha/remix

Remix / React Router v7 adapter for Wocha authentication using the BFF (Backend-for-Frontend) pattern. OAuth token exchange and refresh happen on the server; sessions are stored in encrypted httpOnly cookies — refresh tokens never reach the browser.

Install

npm install @wocha/remix
# or: pnpm add / yarn add @wocha/remix

Peer dependencies: @remix-run/node or react-router (>=7), React (>=18).

Quick start

1. Environment variables

WOCHA_CLIENT_ID=your-client-id
WOCHA_CLIENT_SECRET=your-client-secret
WOCHA_ISSUER=https://my-tenant.auth.wocha.ai
# Optional:
WOCHA_API_URL=https://my-tenant.api.wocha.ai
WOCHA_COOKIE_SECRET=optional-separate-cookie-secret

2. Auth route handler

Create a splat route at app/routes/auth.$.tsx:

import { createWochaHandler, wochaAuthConfigFromEnv } from "@wocha/remix";

const config = wochaAuthConfigFromEnv()!;
const handler = createWochaHandler(config);

export const loader = handler.loader;
export const action = handler.action;

This exposes:

| Route | Method | Purpose | |-------|--------|---------| | /auth/login | GET | Start OAuth login (?return_to=, ?signup=1) | | /auth/callback | GET | OAuth callback — sets session cookie | | /auth/logout | GET/POST | End session and redirect to IdP logout | | /auth/session | GET | Return public session JSON | | /auth/refresh | POST | Refresh access token | | /auth/switch-org | POST | Switch active organisation |

3. Root loader (for client hooks)

// app/root.tsx
import { getSession, WOCHA_ROOT_LOADER_ID } from "@wocha/remix";
import type { LoaderFunctionArgs } from "react-router";

export async function loader({ request }: LoaderFunctionArgs) {
  const session = await getSession(request);
  return { session, customerApiUrl: undefined };
}

export const id = WOCHA_ROOT_LOADER_ID;

4. Route protection

Option A — React Router v7 middleware:

// app/routes.ts
import { greetMiddleware } from "@wocha/remix";

export const unstable_middleware = [
  greetMiddleware(undefined, { publicPaths: ["/", "/about"] }),
];

Option B — loader guard:

import { requireSessionFromLoader } from "@wocha/remix";

export async function loader(args: LoaderFunctionArgs) {
  const session = await requireSessionFromLoader(args);
  return { user: session.user };
}

5. Client hooks

import { useSession, useUser, useOrg, useSignIn, useSignOut } from "@wocha/remix";

export function UserMenu() {
  const { session, status } = useSession();
  const user = useUser();
  const { orgId } = useOrg();
  const signIn = useSignIn();
  const signOut = useSignOut();

  if (status === "loading") return <p>Loading…</p>;
  if (!user) return <button onClick={() => signIn()}>Sign in</button>;

  return (
    <div>
      <p>{user.email} · {orgId}</p>
      <button onClick={() => signOut()}>Sign out</button>
    </div>
  );
}

Server helpers

import { getSession, getUser, requireSession, getAccessToken } from "@wocha/remix";

export async function loader({ request }: LoaderFunctionArgs) {
  const session = await getSession(request);
  const token = await getAccessToken(request);
  return { session, token };
}

Configuration

import { configureWochaAuth } from "@wocha/remix";

configureWochaAuth({
  clientId: "...",
  clientSecret: "...",
  issuer: "https://my-tenant.auth.wocha.ai",
  authBasePath: "/auth",
  refreshBufferSeconds: 300,
  dpop: { enabled: true, algorithm: "ES256" },
});

License

Apache-2.0