An open API service indexing awesome lists of open source software.

https://github.com/emkay/mkgraph

Graphs!
https://github.com/emkay/mkgraph

bfs dfs edges graph vertices

Last synced: about 1 year ago
JSON representation

Graphs!

Awesome Lists containing this project

README

          

# mkgraph
A tiny module for having fun with graphs.

## Install

`npm i mkgraph`

## Usage

```javascript
const {Graph, Node} = require('mkgraph')

const g = new Graph()

g.add('a')
g.add('b')
g.add('c')

g.drawEdge('a', 'b')
g.drawEdge('b', 'c')

g.shortestPath('a', 'c') // ['a', 'b', 'c']
```

## [API](https://github.com/emkay/mkgraph/blob/master/API.md)

## [Code of Conduct](https://github.com/emkay/mkgraph/blob/master/CODE_OF_CONDUCT.md)

## [Contributing](https://github.com/emkay/mkgraph/blob/master/CONTRIBUTING.md)