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 🙏

© 2024 – Pkg Stats / Ryan Hefner

beirada

v0.1.2

Published

Simple synchronous in-memory graph store, for keeping track of relationships.

Downloads

3

Readme

Beirada

Build Status

Beirada is a simple Javascript library for manipulating directed and undirected graphs.

Your graphs may have self edges, weighted edges, and directed edges, but not multiedges.

Usage

Creating, reading, updating, and deleting edges (CRUD)

const Graph = require('beirada')

var g = new Graph()

g.set('a', 'b', 3) # creates edge (a, b) with weight 3
g.get('a', 'b') # returns 3

g.set('a', 'b', 4) # changes (a, b) weight to 4
g.get('a', 'b') # returns 4

g.del('a', 'b') # removes edge (a, b)
g.get('a', 'b') # returns undefined

Constructing graphs from data

new Graph({
  a: ['b', 'c'],
  c: ['b'],
}) # triangle with vertices a, b, and c

new Graph({
  a: {b: 2},
  b: {c: 3},
}) # path with vertices a, b, c and weights (a, b) = 2, (b, c) = 3

With directed edges

new Graph({a: ['-b', '-c']}) # Directed edges to b and c.

Degree, size, order, and adjacency

var g = new Graph({
  a: ['b'],
  b: ['c'],
}) # path with vertices a, b, c

g.degree('a') # returns 1
g.degree('b') # returns 2
g.degree('c') # returns 1

g.size() # returns 2, the number of edges

g.order() # returns 3, the number of vertices

for (v in g.adj('b')) {
  # v = a, c (in no particular order)
}

Creating directed edges

var g = new Graph()
g.dir('a', 'b') # a ~ b, but b !~ a
g.has('a', 'b') # true
g.has('b', 'a') # false

Alternative syntax

g.set('a', '-b') # Same as g.dir('a', 'b');

Deleting directed edges

var g = new Graph()
g.set('a', 'b') # a ~ b, and b ~ a
g.deldir('b', 'a') # remove b ~ a
g.has('a', 'b') # true
g.has('b', 'a') # false

Copying

var g = new Graph({
  a: ['b', 'c'],
  c: ['d'],
})

var h = g.copy() # an independent copy of g

Directed edges and graph size

You may mix directed and undirected edges in the same graph.

A pair of directed edges (a, b) and (b, a) is always collapsed into an undirected edge. An undirected edge (a, b) may be expanded into a directed edge (a, b) by deleting the directed edge (b, a) with deldir(b, a).

For consistency, the size of a graph is defined to be the number of undirected edges plus the number of directed edges. In other words, two distinct directed edges between two distinct vertices do not count twice for the size.

A directed self edge is indistinguishable from an undirected self edge.

Tests

Beirada is packaged with nodeunit tests.

The easiest way to run the tests is with npm test.

$ npm test
...
OK: 173 assertions (23ms)