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

@meetreeve/module-channels

v1.1.0

Published

Reeve.Channels module extracted from the tenant template (DEV-8166 pilot): the ChannelsConsole (send) surface, a framework-agnostic typed channels client for the host-key send route, and (DEV-9141, T2a) the CONFIG surface — connect Slack, list workspaces,

Readme

@meetreeve/module-channels

The Reeve.Channels tenant module, extracted from reeve-tenant-frontend as the DEV-8166 P1 pilot. Ships in lockstep with the Python reeve-module-channels package (reeve-services packages/reeve_module_channels): both always carry the same MAJOR.MINOR.PATCH — bump them together (manual discipline; the DEV-8176 automation was folded into the FE publish workflow).

Entries

  • @meetreeve/module-channelsChannelsConsole (client component; the build stamps "use client"). Takes the host app's "use server" send action as the sendAction prop: Next.js server actions cannot live inside a published package, so the template keeps a thin actions.ts wrapper (module gating + form validation) and injects it.
  • @meetreeve/module-channels/client — server-safe, framework-agnostic ChannelsClient (send on the host-key branch of POST /api/channels/v1/send). Constructed with { apiBase, hostApp, hostKey }; import it only from server-side code — the host key must never reach the browser.

Template wiring

// app/(app)/modules/channels/actions.ts  ("use server")
import { ChannelsClient } from "@meetreeve/module-channels/client";
const client = new ChannelsClient({
  apiBase: process.env.REEVE_API_BASE!,
  hostApp: process.env.REEVE_HOST_APP,
  hostKey: process.env.REEVE_HOST_KEY,
});

// app/(app)/modules/channels/page.tsx
import { ChannelsConsole } from "@meetreeve/module-channels";
<ChannelsConsole sendAction={sendChannel} />

Peer deps: react, react-dom, lucide-react, and @meetreeve/ui (the /console primitives hoisted by the same ticket). Local build/test resolves @meetreeve/ui via the file:../ui devDependency, so this package builds in CI before @meetreeve/[email protected] is on npm.