Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lmangani/gun-scape

GunDB Cytoscape Graph Visualizer + Live Editor
https://github.com/lmangani/gun-scape

cytoscape editor graph gun gundb relations

Last synced: 3 months ago
JSON representation

GunDB Cytoscape Graph Visualizer + Live Editor

Awesome Lists containing this project

README

        

# Gun-scape
[GunDB](https://github.com/amark/gun) Cytoscape Graph Visualizer + Live Editor

#### [Try the Live Demo](http://rawgit.com/lmangani/gun-scape/master/index.html)
Execute your own _"Shot-GunDB Wedding"_ and test all Gun [commands](http://gun.js.org/docs/get.html) in a snap:
![ezgif com-optimize 30](https://user-images.githubusercontent.com/1423657/31863000-bdd31120-b747-11e7-8b7c-b2586aa7cae8.gif)

###### Flow Example
```
g.get('ua').put({name: 'SIP User-Agent'});
g.get('opensips').put({name: 'OpenSIPS'});
g.get('asterisk').put({name: 'Asterisk'});
g.get('rtpengine').put({name: 'RTP:Engine'});
g.get('homer').put({name: 'HOMER'});
g.get('ua').get('sip').put(g.get('opensips'));
g.get('ua').get('rtp').put(g.get('rtpengine'));
g.get('opensips').get('sip').put(g.get('asterisk'));
g.get('rtpengine').get('rtp').put(g.get('asterisk'));
g.get('opensips').get('hep-sip').put(g.get('homer'));
g.get('asterisk').get('hep-sip').put(g.get('homer'));
g.get('rtpengine').get('hep-rtcp').put(g.get('homer'));
```

### Credit
This Demo is based on [serve-gun](https://github.com/JosePedroDias/serve-gundb)