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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@3plate/graph

v0.1.4

Published

Graph library with stable layout and incremental updates

Readme

@3plate/graph

Graph library with stable layout and incremental updates

Inspiration

This component is inspired by IonGraph Web from the SpiderMonkey team.

Features

  • Custom node rendering
  • Automatic graph layout
  • Stable layouts
  • Multiple orientations
  • Interactive features
  • Cycle detection
  • Edge styling
  • Pan and zoom
  • Mini-map
  • Animations
  • SVG for crisp details
  • Fast rendering
  • Builder mode
  • Incremental updates
  • Railroad-style edges
  • Configurable layout
  • React/Vue/Angular support

Project Structure

@3plate/graph can be used as a library with no framework dependencies, or you can use the components in @3plate/graph-react, @3plate/graph-vue, or @3plate/graph-angular which wrap the core library.

graph/
├── packages/
│   ├── core/
│   │   ├── src/
│   │   ├── package.json
│   │   ├── tsconfig.json
│   │   └── README.md
│   │
│   ├── react/
│   │   ├── src/
│   │   ├── package.json
│   │   └── README.md
│   │
│   ├── vue/
│   │   └── ...
│   │
│   └── angular/
│       └── ...
│
├── apps/
│   ├── demo-react/
│   │   ├── src/
│   │   ├── public/
│   │   ├── index.html
│   │   ├── vite.config.js
│   │   └── package.json
│   │
│   ├── demo-vue/
│   |   └── ...
│   │
│   └── demo-angular/
│       └── ...
│
├── .github/
│   └── workflows/
│       ├── publish-npm.yml
│       └── deploy-pages.yml
│
├── pnpm-workspace.yaml
├── package.json
├── .npmrc
├── turbo.json
└── README.md

Installation

Core Library

npm install @3plate/graph-core

Framework Wrappers

# React
npm install @3plate/graph-react

# Vue
npm install @3plate/graph-vue

# Angular
npm install @3plate/graph-angular

Usage

Core (Framework-agnostic)

TODO

React

TODO

Vue

TODO

Development

# Install dependencies
pnpm install

# Build all packages
pnpm build

# Run demo site
pnpm dev:site

# Run tests
pnpm test

Contributing

We welcome contributions! Before submitting a pull request, please:

  1. Read our Contributing Guidelines
  2. Sign the Contributor License Agreement (CLA)
  3. Follow the code style and testing guidelines

See CONTRIBUTING.md for more details.

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.

Why GPL?

We've chosen GPL-3.0 to ensure that improvements to @3plate/graph remain open source and benefit the entire community. This means:

  • ✅ You can use @3plate/graph in open source projects
  • ✅ You can modify and distribute @3plate/graph
  • ✅ Commercial use is allowed
  • ⚠️ If you distribute modified versions, you must also make your changes available under GPL-3.0

Commercial Licensing

If you need to use @3plate/graph in a proprietary/closed-source application without GPL restrictions, commercial licenses are available. Contact us at [[email protected]] for more information.

Copyright

Copyright (c) 2025 3Plate LLC


Made with ⚡ by 3Plate LLC