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

@flowpanel/kit

v0.1.0

Published

Config-first admin panel framework for Next.js 15

Readme

flowpanel

One typed config → full admin panel for your Next.js app. Drizzle or Prisma. Realtime. Queues. Eject when you outgrow it.

npm License: MIT

Install

pnpm add @flowpanel/kit
pnpm flowpanel init
pnpm flowpanel dev

Visit http://localhost:3000/admin. Done.

What you get

  • Type-safe end-to-end. ctx.db typed everywhere via one declare module augmentation.
  • Three customization tiers. L1 props (90%) → L2 theme.components overrides (10 slots) → L3 flowpanel eject for full ownership.
  • Batteries included. CRUD lists, drawers, dashboards, BullMQ queues, realtime SSE, soft-delete, audit, scope, rate-limit.
  • Two ORMs first-class. Drizzle (Postgres / MySQL / SQLite) and Prisma — @flowpanel/kit/drizzle and @flowpanel/kit/prisma.
  • Auth helpers. withClerk, withNextAuth, withLucia from @flowpanel/kit/auth.

12-line config

// flowpanel.config.ts
import { defineAdmin, resource } from "@flowpanel/kit";
import { drizzleAdapter } from "@flowpanel/kit/drizzle";
import { withClerk } from "@flowpanel/kit/auth";
import { db } from "@/db/client";
import * as schema from "@/db/schema";

declare module "@flowpanel/core" {
  interface FlowpanelTypes { db: typeof db }
}

export default defineAdmin({
  adapter: drizzleAdapter({ db, schema }),
  auth: withClerk({ requireRole: "admin" }),
  resources: [resource(schema.users, { columns: ["email", "role"] })],
});

CLI

flowpanel init      Scaffold the admin (config + routes + migrations)
flowpanel dev       Start Next.js (and bull-board if REDIS_URL is set)
flowpanel new       Add a resource to flowpanel.config.ts
flowpanel migrate   Apply audit + tracking SQL migrations
flowpanel doctor    Health check (--fix to auto-write missing routes)
flowpanel eject     Take ownership of a resource / dashboard / layout

Subpaths

flowpanel              core builders (defineAdmin, resource, dashboard, ...)
flowpanel/next         Next.js App Router integration
flowpanel/react        React UI primitives (used internally and exposed)
flowpanel/drizzle      Drizzle adapter
flowpanel/prisma       Prisma adapter
flowpanel/bullmq       BullMQ queue adapter
flowpanel/charts       Charts (lazy-loaded)
flowpanel/client       Client-only hooks
flowpanel/auth         withClerk, withNextAuth, withLucia
flowpanel/server       Server-only utilities

Documentation

https://flowpanel.dev

License

MIT — see LICENSE.