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

jellybean-pm

v0.1.2

Published

A full-featured project management integration for [Astro](https://astro.build), powered by GitHub as the backend. Ship a Kanban board, calendar, chat, docs, and asset manager directly inside your Astro site — no external database required.

Readme

jellybean-pm

A full-featured project management integration for Astro, powered by GitHub as the backend. Ship a Kanban board, calendar, chat, docs, and asset manager directly inside your Astro site — no external database required.

Features

  • Kanban board — drag-and-drop issues across fully configurable columns
  • Calendar view — visualize deadlines and sprint timelines
  • Goals / Milestones — epics and milestones for roadmap planning
  • Real-time chat — group chat, DMs, and per-project channels with file attachments
  • Docs browser — built-in markdown documentation viewer
  • Asset manager — upload and manage project files
  • GitHub-backed storage — all data lives in a Git repository you own
  • GitHub OAuth — team members log in with their existing GitHub accounts
  • Time tracking — per-issue timers with accumulated session time
  • Sprint management — create, activate, and complete sprints

Requirements

  • Astro ≥ 5.0
  • React ≥ 18
  • A GitHub repository to store project data
  • A GitHub OAuth App for authentication

Install

npm install jellybean-pm

A jellybean-pm.config.ts starter file will be created in your project root automatically.

Quick Start

1. Create a GitHub OAuth App

Go to GitHub → Settings → Developer settings → OAuth Apps → New OAuth App.

| Field | Value | |---|---| | Homepage URL | http://localhost:4321 (or your production URL) | | Authorization callback URL | http://localhost:4321/api/jellybean/auth/callback |

Copy the Client ID and generate a Client Secret.

2. Set environment variables

# .env
GITHUB_CLIENT_ID=your_client_id
GITHUB_CLIENT_SECRET=your_client_secret
SESSION_SECRET=a_random_32_char_string

3. Configure the integration

Edit the generated jellybean-pm.config.ts:

import { defineConfig } from 'jellybean-pm';

export default defineConfig({
  storage: {
    repo: 'your-org/your-repo',   // GitHub repo that stores PM data
    dataPath: '.jellybean-pm',     // directory inside the repo
    branch: 'main',
  },
  ui: {
    brand: {
      name: 'My Project PM',
      logo: '/path/to/logo.svg',   // optional
    },
  },
  projects: [
    {
      slug: 'my-project',
      name: 'My Project',
      columns: [
        { id: 'todo',        name: 'To Do'       },
        { id: 'in-progress', name: 'In Progress' },
        { id: 'review',      name: 'Review'      },
        { id: 'done',        name: 'Done'         },
      ],
    },
  ],
});

4. Register the Astro integration

// astro.config.mjs
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import pm from 'jellybean-pm';
import pmConfig from './jellybean-pm.config';

export default defineConfig({
  integrations: [react(), pm(pmConfig)],
});

5. Start your dev server

npm run dev

Navigate to http://localhost:4321/project-management to see your board.

Configuration Reference

Top-level options

| Option | Type | Default | Description | |---|---|---|---| | storage | StorageConfig | — | Default storage for all projects | | ui.basePath | string | '/project-management' | URL prefix for the PM interface | | ui.brand.name | string | 'JellyBean PM' | Display name in the nav | | ui.brand.logo | string | — | URL or path to logo image | | projects | ProjectConfig[] | required | Array of project definitions |

StorageConfig

| Option | Type | Default | Description | |---|---|---|---| | repo | string | required | GitHub repository in owner/repo format | | dataPath | string | required | Directory inside the repo where data is stored | | branch | string | 'main' | Branch to read and write data on | | commitMode | 'create' \| 'amend' | 'create' | 'amend' rewrites HEAD instead of creating new commits — useful to keep Git history clean |

ProjectConfig

| Option | Type | Default | Description | |---|---|---|---| | slug | string | required | URL-safe identifier (e.g. 'my-project') | | name | string | required | Display name | | columns | ColumnConfig[] | 4 default columns | Kanban columns (id + name pairs) | | storage | StorageConfig | inherits top-level | Per-project storage override |

Environment Variables

| Variable | Description | |---|---| | GITHUB_CLIENT_ID | GitHub OAuth App client ID | | GITHUB_CLIENT_SECRET | GitHub OAuth App client secret | | SESSION_SECRET | Secret for encrypting session cookies (min 32 chars) |

Multiple Projects

Each project can point to a different repository or branch:

export default defineConfig({
  storage: { repo: 'my-org/shared-pm', dataPath: '.jellybean-pm' },
  projects: [
    { slug: 'frontend', name: 'Frontend', columns: [...] },
    {
      slug: 'backend',
      name: 'Backend',
      // overrides top-level storage for this project only
      storage: { repo: 'my-org/backend', dataPath: '.jellybean-pm' },
      columns: [...],
    },
  ],
});

Contributing

git clone https://github.com/jsjohn1951/jellybean-pm.git
cd jellybean-pm
npm install
npm test

Pull requests are welcome. Please open an issue first for substantial changes.

License

MIT