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

https://github.com/kessler/catgraph

pipe graph data to the browser
https://github.com/kessler/catgraph

Last synced: 10 months ago
JSON representation

pipe graph data to the browser

Awesome Lists containing this project

README

          

# catgraph (WIP)

Pipe graph data to browser.

### simple example

```bash
echo 1--2\n2--3\n2--4\n4--1\n5 | catgraph
```

### json helps with customization

```bash
echo -e '{ "id": 1, "val": 5, "name": "a" }--{ "id": 2, "val": 3, "name": "b" }\n{ "id": 3, "val": 2, "name": "a" }' | catgraph
```

### dev

```
npm run build_dev; node testEmitter.js | env DEBUG=catgraph ./catgraph.js
```