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/roadmap

v0.16.0

Published

Geenius Roadmap — Public roadmap, voting, comments, and admin tooling for Geenius apps

Readme

@geenius/roadmap

Public roadmap, voting, comments, and admin tooling for Geenius products.

Overview

@geenius/roadmap packages the shared roadmap data model, framework bindings, CSS variants, and Convex helpers behind a stable root export map. It is designed for feature-roadmap pages, detail drawers, voting flows, and admin review tools.

Installation

pnpm add @geenius/roadmap

Add the peers you actually use:

  • react and react-dom for @geenius/roadmap/react or @geenius/roadmap/react-css
  • solid-js for @geenius/roadmap/solidjs or @geenius/roadmap/solidjs-css
  • convex for @geenius/roadmap/convex

Subpath Imports

import { getCategoryEmoji } from '@geenius/roadmap'
import { getCategoryEmoji } from '@geenius/roadmap/shared'
import { schema, listItems, toggleVote } from '@geenius/roadmap/convex'
import { RoadmapPage, RoadmapDetailPage, RoadmapAdminPage } from '@geenius/roadmap/react'
import { RoadmapPage as RoadmapCssPage } from '@geenius/roadmap/react-css'
import { createRoadmap } from '@geenius/roadmap/solidjs'
import { RoadmapPage as RoadmapSolidCssPage } from '@geenius/roadmap/solidjs-css'

Public Subpaths

  • @geenius/roadmap and @geenius/roadmap/shared expose the framework-agnostic roadmap contract.
  • @geenius/roadmap/react exposes Tailwind-based React hooks, components, and pages.
  • @geenius/roadmap/react-css exposes standalone React components and pages backed by vanilla CSS.
  • @geenius/roadmap/solidjs exposes Tailwind-based SolidJS primitives, components, and pages.
  • @geenius/roadmap/solidjs-css exposes standalone SolidJS components and pages backed by vanilla CSS.
  • @geenius/roadmap/convex exposes the typed Convex schema, queries, and mutations.

The CSS variant entrypoints import their own stylesheets, so consumers only need the package subpath import.

Usage

import { RoadmapPage } from '@geenius/roadmap/react'

export function ProductRoadmapRoute() {
  return <RoadmapPage />
}
import { configureRoadmap } from '@geenius/roadmap'
import { RoadmapPage } from '@geenius/roadmap/react-css'

configureRoadmap({
  enabled: true,
  apiBasePath: '/api/roadmap',
  publicVoting: true,
  votesPerUser: 1,
  allowComments: true,
  showCompletedItems: true,
  linkedToChangelog: false,
})

export function ProductRoadmapCssRoute() {
  return <RoadmapPage />
}
import { createRoadmap } from '@geenius/roadmap/solidjs'

export function SolidRoadmapExample() {
  const roadmap = createRoadmap()
  return <div>{roadmap.items().length}</div>
}

Convex Example

import schema, { listItems, toggleVote } from '@geenius/roadmap/convex'

export { schema, listItems, toggleVote }

Storybook

Reference Storybook apps for both frameworks live in the package repository:

Both surfaces render the Tailwind and vanilla CSS variants side by side for parity review.

License

Free-tier usage is licensed under FSL-1.1-Apache-2.0. Commercial usage follows the Geenius commercial license terms.

See LICENSE.