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

@authdog/redwood

v0.1.1

Published

Authdog RedwoodJS SDK

Readme

@authdog/redwood

Authdog SDK for RedwoodJS — a React web-side provider plus API-side helpers for Redwood functions and services.

Sessions use the same authdog-session cookie and OIDC userinfo flow as every other @authdog/* package, so one Authdog environment works across your stack.

Install

yarn workspace web add @authdog/redwood @authdog/react-elements
yarn workspace api add @authdog/redwood

Provide your public key (pk_…). The web side reads it via Redwood's REDWOOD_ENV_ prefix; the API side reads it server-side:

REDWOOD_ENV_AUTHDOG_PUBLIC_KEY=pk_xxxxxxxxxxxxxxxx   # exposed to the browser
PK_AUTHDOG=pk_xxxxxxxxxxxxxxxx                        # server-only (API)

Add AUTHDOG_PUBLIC_KEY (or the REDWOOD_ENV_* name) to includeEnvironmentVariables in redwood.toml so the web build inlines it.

Web side

Wrap your app in web/src/App.tsx:

import "@authdog/react-elements/styles.css";
import { AuthdogProvider } from "@authdog/redwood/web";

const App = () => (
  <AuthdogProvider>
    <RedwoodProvider titleTemplate="%PageTitle | %AppTitle">
      <Routes />
    </RedwoodProvider>
  </AuthdogProvider>
);

The provider strips the ?token=… the login redirect appends and reloads once so the server can persist the HttpOnly session cookie.

API side (functions)

// api/src/functions/me.ts
import { createAuthdog } from "@authdog/redwood/api";

const authdog = createAuthdog({ publicKey: process.env.PK_AUTHDOG! });

// requireAuth is the real server-side enforcement point.
export const handler = authdog.requireAuth(async (event) => ({
  statusCode: 200,
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify(event.authdog.user),
}));
// api/src/functions/logout.ts
export { logoutHandler as handler } from "@authdog/redwood/api";

Inside a Redwood service you can resolve the user from the incoming event:

import { createAuthdog } from "@authdog/redwood/api";
import { context } from "@redwoodjs/graphql-server";

const authdog = createAuthdog({ publicKey: process.env.PK_AUTHDOG! });

export const me = async () => {
  const user = await authdog.getUser(context.event);
  return user?.user ?? null;
};

API

| Export | Entry | Description | | ---------------------------------- | ------ | ------------------------------------------------ | | AuthdogProvider, ReloadPage | /web | React provider + callback helper | | initAuthdog, clearAuthdogToken | /web | Browser token bootstrap / sign-out | | createAuthdog | /api | getSession, getUser, requireAuth, logout | | getSessionToken, logoutHandler | /api | Low-level helpers | | getPublicKeyPayload | /api | Validated public-key parser |

License

MIT © Authdog