UNPKG

9.31 kBMarkdownView Raw
1<img style="width: 200px; height: 200px;" src="https://raw.githubusercontent.com/cytoscape/cytoscape.js/unstable/documentation/img/cytoscape-logo.png" width="200" height="200"></img>
2
3[![GitHub repo](https://img.shields.io/badge/Repo-GitHub-yellow.svg)](https://github.com/cytoscape/cytoscape.js)
4[![Twitter updates](https://img.shields.io/badge/Updates-Twitter-yellow.svg)](https://twitter.com/cytoscapejs)
5[![News and tutorials](https://img.shields.io/badge/News%20%26%20tutorials-Blog-yellow.svg)](https://blog.js.cytoscape.org)
6[![Questions at StackOverflow](https://img.shields.io/badge/Questions-StackOverflow-yellow.svg)](https://stackoverflow.com/questions/tagged/cytoscape.js)
7[![Ask a question at StackOverflow](https://img.shields.io/badge/Ask%20a%20question-StackOverflow-yellow.svg)](https://stackoverflow.com/questions/ask?tags=cytoscape.js,javascript)
8[![Community discussions](https://img.shields.io/badge/Community%20discussions-GitHub-yellow.svg)](https://github.com/cytoscape/cytoscape.js/discussions)
9[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://raw.githubusercontent.com/cytoscape/cytoscape.js/master/LICENSE)
10[![DOI](https://zenodo.org/badge/2255947.svg)](https://zenodo.org/badge/latestdoi/2255947)
11[![Cite](https://img.shields.io/badge/Cite-Oxford%20Bioinformatics%20Article-blue.svg)](https://js.cytoscape.org/#introduction/citation)
12[![npm](https://img.shields.io/npm/v/cytoscape.svg)](https://www.npmjs.com/package/cytoscape)
13[![Download](https://img.shields.io/npm/v/cytoscape.svg?label=Download)](https://github.com/cytoscape/cytoscape.js/tree/master/dist)
14[![Extensions](https://img.shields.io/badge/Extensions-67-blue.svg)](https://js.cytoscape.org/#extensions)
15[![npm installs](https://img.shields.io/npm/dm/cytoscape.svg?label=npm%20installs)](https://www.npmjs.com/package/cytoscape)
16[![master branch tests](https://img.shields.io/travis/cytoscape/cytoscape.js/master.svg?label=master%20branch)](https://travis-ci.org/cytoscape/cytoscape.js)
17[![unstable branch tests](https://img.shields.io/travis/cytoscape/cytoscape.js/unstable.svg?label=unstable%20branch)](https://travis-ci.org/cytoscape/cytoscape.js)
18
19# Cytoscape.js
20
21Graph theory (network) library for visualisation and analysis : [https://js.cytoscape.org](https://js.cytoscape.org)
22
23## Description
24
25Cytoscape.js is a fully featured [graph theory](https://en.wikipedia.org/wiki/Graph_theory) library. Do you need to model and/or visualise relational data, like biological data or social networks? If so, Cytoscape.js is just what you need.
26
27Cytoscape.js contains a graph theory model and an optional renderer to display interactive graphs. This library was designed to make it as easy as possible for programmers and scientists to use graph theory in their apps, whether it's for server-side analysis in a Node.js app or for a rich user interface.
28
29You can get started with Cytoscape.js with one line:
30
31```js
32var cy = cytoscape({ elements: myElements, container: myDiv });
33```
34
35Learn more about the features of Cytoscape.js by reading [its documentation](https://js.cytoscape.org).
36
37
38## Example
39
40The Tokyo railway stations network can be visualised with Cytoscape:
41
42<img style="width: 300px; height: 126px;" src="https://raw.githubusercontent.com/cytoscape/cytoscape.js/unstable/documentation/img/tokyo-big.png" width="300" height="126"></img>
43
44<img style="width: 300px; height: 126px;" src="https://raw.githubusercontent.com/cytoscape/cytoscape.js/unstable/documentation/img/tokyo-big-zoomed-in.png" width="300" height="126"></img>
45
46A [live demo](https://js.cytoscape.org/demos/tokyo-railways/) and [source code](https://github.com/cytoscape/cytoscape.js/tree/master/documentation/demos/tokyo-railways) are available for the Tokyo railway stations graph. More demos are available in the [documentation](https://js.cytoscape.org/#demos).
47
48
49## Documentation
50
51You can find the documentation and downloads on the [project website](https://js.cytoscape.org).
52
53
54
55## Roadmap
56
57Future versions of Cytoscape.js are planned in the [milestones of the Github issue tracker](https://github.com/cytoscape/cytoscape.js/milestones). You can use the milestones to see what's currently planned for future releases.
58
59
60
61
62## Contributing to Cytoscape.js
63
64Would you like to become a Cytoscape.js contributor? You can contribute in technical roles (e.g. features, testing) or non-technical roles (e.g. documentation, outreach), depending on your interests. [Get in touch with us by posting a GitHub discussion](https://github.com/cytoscape/cytoscape.js/discussions).
65
66For the mechanics of contributing a pull request, refer to [CONTRIBUTING.md](.github/CONTRIBUTING.md).
67
68Feature releases are made monthly, while patch releases are made weekly. This allows for rapid releases of first- and third-party contributions.
69
70
71
72## Citation
73
74To cite Cytoscape.js in a paper, please cite the Oxford Bioinformatics issue:
75
76*Cytoscape.js: a graph theory library for visualisation and analysis*
77
78Franz M, Lopes CT, Huck G, Dong Y, Sumer O, Bader GD
79
80[Bioinformatics (2016) 32 (2): 309-311 first published online September 28, 2015 doi:10.1093/bioinformatics/btv557 (PDF)](https://bioinformatics.oxfordjournals.org/content/32/2/309)
81
82[PubMed Abstract](https://www.ncbi.nlm.nih.gov/pubmed/26415722)
83
84
85
86
87## Build dependencies
88
89Install `node` and `npm`. Run `npm install` before using `npm run`.
90
91
92
93
94## Build instructions
95
96Run `npm run <target>` in the console. The main targets are:
97
98**Building:**
99
100 * `build`: do all builds of the library (umd, min, umd, esm)
101 * `build:min` : do the unminified build with bundled dependencies (for simple html pages, good for novices)
102 * `build:umd` : do the umd (cjs/amd/globals) build
103 * `build:esm` : do the esm (ES 2015 modules) build
104 * `clean` : clean the `build` directory
105 * `docs` : build the docs into `documentation`
106 * `release` : build all release artifacts
107 * `watch` : automatically build lib for debugging (with sourcemap, no babel, very quick)
108 * good for general testing on `debug/index.html`
109 * served on `http://localhost:8080` or the first available port thereafter, with livereload on `debug/index.html`
110 * `watch:babel` : automatically build lib for debugging (with sourcemap, with babel, a bit slower)
111 * good for testing performance or for testing out of date browsers
112 * served on `http://localhost:8080` or the first available port thereafter, with livereload on `debug/index.html`
113 * `watch:umd` : automatically build prod umd bundle (no sourcemap, with babel)
114 * good for testing cytoscape in another project (with a `"cytoscape": "file:./path/to/cytoscape"` reference in your project's `package.json`)
115 * no http server
116 * `dist` : update the distribution js for npm etc.
117
118**Testing:**
119
120The default test scripts run directly against the source code. Tests can alternatively be run on a built bundle. The library can be built on `node>=6`, but the library's bundle can be tested on `node>=0.10`.
121
122 * `test` : run all testing & linting
123 * `test:js` : run the mocha tests on the public API of the lib (directly on source files)
124 * `npm run test:js -- -g "my test name"` runs tests on only the matching test cases
125 * `test:build` : run the mocha tests on the public API of the lib (on a built bundle)
126 * `npm run build` should be run beforehand on a recent version of node
127 * `npm run test:build -- -g "my test name"` runs build tests on only the matching test cases
128 * `test:modules` : run unit tests on private, internal API
129 * `npm run test:modules -- -g "my test name"` runs modules tests on only the matching test cases
130 * `lint` : lint the js sources via eslint
131 * `benchmark` : run all benchmarks
132 * `benchmark:single` : run benchmarks only for the suite specified in `benchmark/single`
133
134
135
136## Release instructions
137
138 1. Do each backport patch release before the corresponding current release. This ensures that npm lists the current version as the latest one.
139 1. Make sure the docs are updated with the list of releases in `documentation/md/intro.md`
140 1. Update the `VERSION` environment variable, e.g. `export VERSION=1.2.3`
141 1. Confirm all the tests are passing: `npm run test` (see also `test/index.html` for browser testing)
142 1. Confirm all the tests are passing in IE9:
143 1. `npm run watch:umd`
144 1. Open an [IE9 VM](https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/)
145 1. Open `http://yourip:8081/test/ie.html` in IE
146 1. Prepare a release: `npm run release`
147 1. Review the files that were just built in the previous step. Try out the newly-built docs and demos.
148 1. Add the the release to git: `git add . && git commit -m "Build $VERSION"`
149 1. Update the package version: `npm version $VERSION`
150 1. Push the release changes: `git push && git push --tags`
151 1. Publish the release to npm: `npm publish .`
152 1. [Create a release](https://github.com/cytoscape/cytoscape.js/releases/new) for Zenodo from the latest tag
153 1. For feature releases: Create a release announcement on the [blog](https://github.com/cytoscape/cytoscape.js-blog). Share the announcement on mailing lists and social media.
154
155
156
157## Tests
158
159Mocha tests are found in the [test directory](https://github.com/cytoscape/cytoscape.js/tree/master/test). The tests can be run in the browser or they can be run via Node.js (`npm run test:js`).