Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lmangani/gun-scape
- Owner: lmangani
- Created: 2017-10-21T19:06:19.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-09-19T10:00:41.000Z (over 3 years ago)
- Last Synced: 2024-10-04T11:57:15.513Z (4 months ago)
- Topics: cytoscape, editor, graph, gun, gundb, relations
- Language: JavaScript
- Homepage: https://goo.gl/qDTBx7
- Size: 232 KB
- Stars: 62
- Watchers: 5
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - lmangani/gun-scape - GunDB Cytoscape Graph Visualizer + Live Editor (others)
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)