Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lsvih/cyez
A thin, practical wrapper of cytoscape.js
https://github.com/lsvih/cyez
Last synced: 24 days ago
JSON representation
A thin, practical wrapper of cytoscape.js
- Host: GitHub
- URL: https://github.com/lsvih/cyez
- Owner: lsvih
- Created: 2019-07-03T03:01:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T04:22:59.000Z (almost 2 years ago)
- Last Synced: 2024-11-19T12:03:26.219Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://lsvih.github.io/cyez/
- Size: 5.4 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cytoscape is too easy
## Startup
- Create folder `node_modules/cyez`
- Copy `dist/index.js` into `node_modules/cyez`
- Import cyez in App.vue```js
import Cyez from 'cyez'export default {
name:'App',
mounted(){
this.cyez = new Cyez(document.getElementById('graph'), {})
}
}
```### Install Dependency
```bash
npm install -f
```### Build
```bash
npm run build
```### Preview and test
```bash
npm start
```### Generate documents
```bash
npm run doc
```