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

@sha1n/dagraph

v0.3.2

Published

Directed acyclic graph utility in TypeScript

Readme

CI Coverage codecov GitHub npm type definitions npm

DAGraph

A directed acyclic graph (DAG) implementation in TypeScript.

Features

  • Generic Graph Structure: Store any identifiable data in the graph.
  • Topological Sort: Iterate over nodes in topological order (dependencies first).
  • Cycle Detection: Automatically detects and prevents cycles when adding edges.
  • Root Traversal: Efficiently access all root nodes (nodes with no dependencies).
  • Graph Reversal: Create a new graph with all edges reversed.
  • Depth-First Traversal: Visit nodes with context, parent, depth, and index information.
  • TypeScript: Written in TypeScript with full type definitions.

Usage

Basic

import createDAG from '@sha1n/dagraph';

const dag = createDAG();

dag.addNode({id : 'a'});
dag.addEdge({id : 'b'}, {id : 'a'}); // b -> a
dag.addEdge({id : 'c'}, {id : 'a'}); // c -> a
dag.addEdge({id : 'd'}, {id : 'b'}); // d -> b

// Topological sort
for (const node of dag.topologicalSort()) {
  console.log(node.id);
}

Custom Objects

Any object implementing the Identifiable interface (having an id: string property) can be stored.

import { createDAG, Identifiable } from '@sha1n/dagraph';

type MyThing = {
  id: string; 
  name: string;
  doSomething(): void;
};

const myThing: MyThing = {
    id: 'a',
    name: 'my thing',
    doSomething: () => {
      console.log('A');
    }
  };

const myOtherThing: MyThing = {
    id: 'b',
    name: 'my other thing',
    doSomething: () => {
      console.log('B');
    }
  };

const myDAG = createDAG<MyThing>();

// Add nodes explicitly or implicitly via addEdge
myDAG.addEdge(myThing, myOtherThing); // myThing -> myOtherThing

Visualization

You can visualize the graph structure using built-in formatters with the traverse method.

Indented List

import createDAG, { createIndentFormatter } from '@sha1n/dagraph';

const dag = createDAG();
// ... add nodes and edges ...

const lines: string[] = [];
dag.traverse(createIndentFormatter(), lines);
console.log(lines.join('\n'));

// Output example:
// A
//   B
//     C

Tree Structure

import createDAG, { createTreeAsciiFormatter } from '@sha1n/dagraph';

const dag = createDAG();
// ... add nodes and edges ...

const lines: string[] = [];
dag.traverse(createTreeAsciiFormatter(), lines);
console.log(lines.join('\n'));

// Output example:
// A
// ├── B
// │   └── C
// └── D
//     └── E

Custom Traversal

The traverse method allows you to visit every node in a depth-first manner, effectively expanding the graph into a tree (nodes with multiple parents are visited for each path).

import createDAG, { DAGVisitor } from '@sha1n/dagraph';

// ... setup dag ...

const visitor: DAGVisitor<MyType, void> = (node, state, context) => {
  console.log(`Node: ${node.id}, Depth: ${state.depth}, Parent: ${state.parent?.id}`);
};

dag.traverse(visitor);

Install

Using pnpm (recommended):

pnpm add @sha1n/dagraph

Using npm:

npm i @sha1n/dagraph

Using yarn:

yarn add @sha1n/dagraph

Development

This project uses pnpm for dependency management.

Prerequisites

  • Node.js (version specified in .nvmrc or engines in package.json)
  • pnpm

Commands

  • Install dependencies:

    pnpm install
  • Build:

    pnpm build
  • Run Tests:

    pnpm test
  • Lint:

    pnpm lint