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

@geenius/admin

v0.16.1

Published

Geenius Admin — Super admin panel for Convex apps (React + SolidJS)

Downloads

416

Readme

@geenius/admin

Production-ready admin surfaces for the Geenius ecosystem: shared contracts, React and SolidJS UI variants, vanilla-CSS variants, and a typed Convex backend package.

Installation

pnpm add @geenius/admin

Subpath Imports

import { DEFAULT_ADMIN_CONFIG, type AdminUser } from '@geenius/admin'
import { AdminProvider, AdminDashboardPage } from '@geenius/admin/react'
import { AdminProvider as CssAdminProvider, AdminDashboardPage as CssDashboardPage } from '@geenius/admin/react-css'
import { AdminProvider as SolidAdminProvider, AdminDashboardPage as SolidDashboardPage } from '@geenius/admin/solidjs'
import { AdminProvider as SolidCssAdminProvider, AdminDashboardPage as SolidCssDashboardPage } from '@geenius/admin/solidjs-css'
import { adminTables, getUsers, createUser, api } from '@geenius/admin/convex'

Variants

| Subpath | Purpose | | --- | --- | | @geenius/admin | Shared types, constants, validators, and permission helpers | | @geenius/admin/react | React components, pages, hooks, and provider | | @geenius/admin/react-css | React components and pages styled with standalone vanilla CSS | | @geenius/admin/solidjs | SolidJS components, pages, primitives, and provider | | @geenius/admin/solidjs-css | SolidJS components and pages styled with standalone vanilla CSS | | @geenius/admin/convex | Convex schema, queries, mutations, validators, and generated API bindings |

Basic Usage

import {
  AdminProvider,
  AdminDashboardPage,
  type AdminNavItem,
} from '@geenius/admin/react'
import type { AdminUser, SystemMetrics } from '@geenius/admin'

const admin: AdminUser = {
  id: 'admin_1',
  email: '[email protected]',
  name: 'Operations Lead',
  role: 'super_admin',
  permissions: [],
  isActive: true,
  isDeleted: false,
  createdAt: Date.now(),
  status: 'active',
}

const navItems: AdminNavItem[] = [
  { label: 'Dashboard', href: '/admin', icon: '📊', active: true },
  { label: 'Users', href: '/admin/users', icon: '👥' },
  { label: 'Audit Log', href: '/admin/audit', icon: '📋' },
  { label: 'Settings', href: '/admin/settings', icon: '⚙️' },
]

const metrics: SystemMetrics = {
  totalUsers: 1280,
  activeUsers: 932,
  monthlyRecurringRevenue: 48000,
  churnRate: 2.1,
  averageSessionDuration: 742,
}

export function AdminApp() {
  return (
    <AdminProvider admin={admin} navItems={navItems} appName="Geenius">
      <AdminDashboardPage
        admin={admin}
        navItems={navItems}
        appName="Geenius"
        metrics={metrics}
        onNavigate={(href) => {
          window.location.assign(href)
        }}
      />
    </AdminProvider>
  )
}

Convex Usage

import { defineSchema } from 'convex/server'
import { adminTables } from '@geenius/admin/convex'

export default defineSchema({
  ...adminTables,
})

The Convex subpath also exports generated api and internal bindings so consuming apps can keep typed function references aligned with the package schema.

Storybook

This package ships repo-local Storybook apps for React and SolidJS parity verification. Source:

Build them with:

pnpm storybook:react:build
pnpm storybook:solidjs:build

License

SEE LICENSE IN LICENSE