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

@osmn-byhn/changelog-github-client

v1.0.2

Published

> A beautiful, customizable, and lightweight GitHub Changelog widget for your website.

Readme

@osmn-byhn/changelog-github-client

A beautiful, customizable, and lightweight GitHub Changelog widget for your website.

This package provides a high-level UI component (React & Vanilla JS) to display your GitHub project's release history in style. It uses @osmn-byhn/changelog-github-core for data processing.

Features

  • Stunning Themes: Built-in support for Light, Dark, and Auto modes.
  • 🎨 Multiple Templates: Choose from modern, timeline, compact, minimal, glassmorphism, accordion, and more.
  • ⚛️ React Ready: Native React component for seamless integration.
  • 🍦 Vanilla JS Support: Easy-to-use class for non-React projects.
  • 🛠️ Fully Customizable: Overridable styles and custom HTML renderers.
  • 📖 Storybook: Interactive environment to preview and configure your widget.

Installation

npm install @osmn-byhn/changelog-github-client @osmn-byhn/changelog-github-core
# or
pnpm add @osmn-byhn/changelog-github-client @osmn-byhn/changelog-github-core

Usage

React

import { ReactChangelogLoader } from '@osmn-byhn/changelog-github-client';

function App() {
  return (
    <div style={{ width: '800px' }}>
      <ReactChangelogLoader 
        owner="facebook" 
        repo="react" 
        template="modern" 
        theme="auto"
        maxReleases={5}
      />
    </div>
  );
}

Vanilla JS

<div id="changelog"></div>

<script type="module">
  import { GithubChangelog } from '@osmn-byhn/changelog-github-client';

  const changelog = new GithubChangelog({
    owner: 'facebook',
    repo: 'react',
    containerId: 'changelog',
    template: 'timeline'
  });

  changelog.init();
</script>

Storybook

We provide a comprehensive Storybook setup to help you explore different configurations and styles.

Running Storybook

  1. Clone the main repository (monorepo).
  2. Install dependencies: pnpm install
  3. Run storybook: pnpm storybook

This will launch an interactive UI where you can play with templates (list, timeline, modern, etc.) and themes in real-time.

Configuration Options

| Option | Type | Default | Description | | :--- | :--- | :--- | :--- | | owner | string | - | GitHub repository owner/organization. | | repo | string | - | GitHub repository name. | | template | string | modern | UI template (list, timeline, modern, compact, minimal, glassmorphism, accordion). | | theme | string | auto | Color theme (light, dark, auto). | | maxReleases| number | 5 | Number of releases to display. | | containerId| string | - | ID of the target container (Vanilla JS only). | | renderCustom| function| - | Custom HTML renderer for absolute control. |

Related Packages

License

MIT © osmn-byhn