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

graphgarden-web

v0.2.0

Published

Web component that renders an interactive GraphGarden node graph

Readme

GraphGarden Web Component

Drop-in <graph-garden> custom element that renders an interactive node graph from a site's graphgarden.json file.

The component fetches the site's protocol file, merges friend graphs, computes a force-directed layout via ForceAtlas2, and renders an interactive visualisation with Sigma.js. Local nodes are shown in indigo, friend nodes in amber, and frontier nodes (broken links or unreachable friends) in grey. Edge colours follow the same origin-based scheme.

Usage

Script tag (module)

<script type="module" src="https://unpkg.com/graphgarden-web"></script>
<graph-garden style="width: 600px; height: 400px;"></graph-garden>

Script tag (classic)

<script src="https://unpkg.com/graphgarden-web/iife"></script>
<graph-garden style="width: 600px; height: 400px;"></graph-garden>

npm

npm install graphgarden-web
import "graphgarden-web";
<graph-garden style="width: 600px; height: 400px;"></graph-garden>

Customization

Colors (CSS custom properties)

Override colors via CSS custom properties on the <graph-garden> element or any ancestor:

| Property | Default | Description | | -------------------------- | --------- | ----------------------------------------------------------- | | --gg-local-node-color | #6366f1 | Color of nodes from the local site | | --gg-friend-node-color | #f59e0b | Color of nodes from friend sites | | --gg-frontier-node-color | #9ca3af | Color of frontier nodes (broken links, unreachable friends) | | --gg-local-edge-color | #94a3b8 | Color of edges between local pages | | --gg-friend-edge-color | #fbbf24 | Color of edges to friend sites | | --gg-label-color | #334155 | Color of node labels |

[!IMPORTANT] Colors can be any format supported by Sigma.js: hex (#rrggbb, #rgb), rgb(), rgba(), or named CSS colors (e.g. red, darkgreen).

Layout and sizing (HTML attributes)

| Attribute | Default | Description | | ------------ | ------- | --------------------------------------- | | node-size | 4 | Radius of graph nodes | | edge-size | 0.5 | Thickness of graph edges | | label-size | 12 | Font size of node labels | | iterations | 200 | Number of ForceAtlas2 layout iterations |

<graph-garden node-size="6" label-size="14" iterations="500"></graph-garden>

Development

Refer to CONTRIBUTING.md for development setup and workflow details.