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

@manningworks/projex

v1.1.3

Published

Show Everything You Ship

Readme

@manningworks/projex

Banner

Show Everything You Ship

A shadcn-style component library for building developer portfolio pages. Drop in pre-built project cards that auto-fetch data from GitHub, npm, and Product Hunt — no API glue required. Built for Next.js. Zero CSS shipped by default.

Why use Projex?

Auto-discover your GitHub repos — Run npx projex init --github to auto-detect all your public repos and generate a pre-populated config file.

Zero runtime API calls — All data fetched at build time. No rate limits at runtime, fresh data on every rebuild.

Mix project types in one place — GitHub repos, npm packages, Product Hunt launches, client work, side projects — all managed from a single config file.

Copy-paste components, you own the code — Components are copied into your project (not installed as a dependency). Customize, refactor, or extend anything.

Style with data attributes — Target elements like [data-projex-card] or use pre-built themes. Zero opinions, full control.

Quick Start

# Auto-discover your GitHub repos
npx projex init --github

# Add components to your project
npx projex add project-card

# Add a pre-built theme
npx projex add theme-minimal
import { ProjectCard } from '@manningworks/projex'
import { projects } from './projex.config'

export function ProjectsGrid() {
  return (
    <div>
      {projects.map((project) => (
        <ProjectCard key={project.id}>
          <ProjectCard.Header project={project} />
          <ProjectCard.Description project={project} />
          <ProjectCard.Stats project={project} />
          <ProjectCard.Links project={project} />
        </ProjectCard>
      ))}
    </div>
  )
}

Documentation

Full Documentation →

CLI Reference

# Initialize with auto GitHub discovery
npx projex init --github

# Copy components to your project
npx projex add project-card
npx projex add project-view

# Add pre-built themes
npx projex add theme-minimal
npx projex add theme-dark
npx projex add theme-gradient

The CLI automatically installs the @manningworks/projex package as a dependency, and copied components import types directly from it.

Project Types Supported

  • GitHub — Auto-fetch stars, forks, language, topics
  • npm — Display downloads, version, package info
  • Product Hunt — Show upvotes, comments, launch date
  • YouTube — Show subscribers, views, latest video
  • Gumroad — Display revenue, sales, subscribers
  • Manual — Full control over client work, side projects
  • Hybrid — Mix GitHub + npm, or any combination

Additional types: Lemon Squeezy (store data), Dev.to (articles) View full documentation →

Component API

Projex uses compound components for maximum flexibility. Each part is optional — use only what you need:

<ProjectCard>
  <ProjectCard.Header project={project} />
  <ProjectCard.Description project={project} />
  <ProjectCard.Tags project={project} />
  <ProjectCard.Stats project={project} />
  <ProjectCard.Status project={project} />
  <ProjectCard.Links project={project} />
</ProjectCard>

View all components →

Styling

Every rendered element has a data-projex-* attribute for styling:

/* Target any element */
[data-projex-card] {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1rem;
}

/* Target specific states */
[data-projex-status-value="active"] {
  background: #10b981;
  color: white;
}

Or use pre-built themes:

npx projex add theme-minimal
npx projex add theme-dark
npx projex add theme-gradient

Styling guide →

License

MIT