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

granone

v1.0.8

Published

A Tiny Graph Database built in Typescript.

Readme

Granone

Granone is a in-memory graph database that emphasizes lazy-evaluation and supports complex queries written with the pleasure of TypeScript.

Installation

npm install granone

Usage

Basic Usage

import Granone from 'granone'

const db = Granone.create();

const helloID = db.addVertex({name: "Hello" });
const WorldID = db.addVertex({name: "World" });

// Adds a Edge helloID -> WorldId 
db.addEdge(helloID, WorldID);

let vertices = db.query().v(helloID).child().run();
// Will Return { name: "World", id: 0 };
console.log(vertices);

vertices = db.query().v(childID).parent().run();
console.log(vertices); // { name: "Hello", id: 1 };

Complex Queries

But that is probably, not what you expect to be all. So let's start with some cool stuff. Graph

Let's build this graph first

db.addVertices({ name: "Aria" }, {name: "Bubble"}, {name: "Caddle"}, {name: "Dutch"}, {name: "Eagle" }, {name: "Furious"});

const edges = [0,2,0,4,0,5,1,4,1,5,2,3,2,4,4,5];

for (let i = 0; i + 1 < edges.length; i += 2) {
    db.addEdge(edges[i], edges[i + 1]);
}

const q = db.query(); // Our Query Object

Here is the query

const vertices = q.v(5).parent().as('me').parent().as('parent').merge('me', 'parent').run();
console.log(vertices);

You can label vertices using as and then further retrieve them using merge.

It will find everything

// Or you can start with a filter
const vertices = q.v({name: "Bubble" }).child().as("first").parent().as("second").child().as("Oh My Caddle").run();
console.log(vertices)

Ran a very complex query, but got lost? Get yourself back.

const vertices = q.v({name: "Bubble"}).  child().as("first").  parent().as("second").  child().as("Where am I").  back("first").  run();
console.log(vertices); // [ { name: 'Furious', id: 5 }, {name: 'Eagle', id: 4} ]

What good is a database without pagination?

let q = db.query();

q = q.v(4).parent().take(1);

q.run(); // [ { name: 'Caddle', id: 2 } ]
q.run(); // [ { name: 'Bubble', id: 1 } ]
q.run(); // [ { name: 'Aria', id: 0 } ]
q.run(); // []

You can find more complex usage in the testcases, if you find any bugs or want more features, please create a issue.

License

MIT