UNPKG

8.56 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-60-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
39
40
41## Documentation
42
43You can find the documentation and downloads on the [project website](https://js.cytoscape.org).
44
45
46
47## Roadmap
48
49Future 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.
50
51
52
53
54## Contributing to Cytoscape.js
55
56Would 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).
57
58For the mechanics of contributing a pull request, refer to [CONTRIBUTING.md](.github/CONTRIBUTING.md).
59
60Feature releases are made monthly, while patch releases are made weekly. This allows for rapid releases of first- and third-party contributions.
61
62
63
64## Citation
65
66To cite Cytoscape.js in a paper, please cite the Oxford Bioinformatics issue:
67
68*Cytoscape.js: a graph theory library for visualisation and analysis*
69
70Franz M, Lopes CT, Huck G, Dong Y, Sumer O, Bader GD
71
72[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)
73
74[PubMed Abstract](https://www.ncbi.nlm.nih.gov/pubmed/26415722)
75
76
77
78
79## Build dependencies
80
81Install `node` and `npm`. Run `npm install` before using `npm run`.
82
83
84
85
86## Build instructions
87
88Run `npm run <target>` in the console. The main targets are:
89
90**Building:**
91
92 * `build`: do all builds of the library (umd, min, umd, esm)
93 * `build:min` : do the unminified build with bundled dependencies (for simple html pages, good for novices)
94 * `build:umd` : do the umd (cjs/amd/globals) build
95 * `build:esm` : do the esm (ES 2015 modules) build
96 * `clean` : clean the `build` directory
97 * `docs` : build the docs into `documentation`
98 * `release` : build all release artifacts
99 * `watch` : automatically build lib for debugging (with sourcemap, no babel, very quick)
100 * good for general testing on `debug/index.html`
101 * served on `http://localhost:8080` or the first available port thereafter, with livereload on `debug/index.html`
102 * `watch:babel` : automatically build lib for debugging (with sourcemap, with babel, a bit slower)
103 * good for testing performance or for testing out of date browsers
104 * served on `http://localhost:8080` or the first available port thereafter, with livereload on `debug/index.html`
105 * `watch:umd` : automatically build prod umd bundle (no sourcemap, with babel)
106 * good for testing cytoscape in another project (with a `"cytoscape": "file:./path/to/cytoscape"` reference in your project's `package.json`)
107 * no http server
108 * `dist` : update the distribution js for npm etc.
109
110**Testing:**
111
112The 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`.
113
114 * `test` : run all testing & linting
115 * `test:js` : run the mocha tests on the public API of the lib (directly on source files)
116 * `npm run test:js -- -g "my test name"` runs tests on only the matching test cases
117 * `test:build` : run the mocha tests on the public API of the lib (on a built bundle)
118 * `npm run build` should be run beforehand on a recent version of node
119 * `npm run test:build -- -g "my test name"` runs build tests on only the matching test cases
120 * `test:modules` : run unit tests on private, internal API
121 * `npm run test:modules -- -g "my test name"` runs modules tests on only the matching test cases
122 * `lint` : lint the js sources via eslint
123 * `benchmark` : run all benchmarks
124 * `benchmark:single` : run benchmarks only for the suite specified in `benchmark/single`
125
126
127
128## Release instructions
129
130 1. Do each backport patch release before the corresponding current release. This ensures that npm lists the current version as the latest one.
131 1. Make sure the docs are updated with the list of releases in `documentation/md/intro.md`
132 1. Update the `VERSION` environment variable, e.g. `export VERSION=1.2.3`
133 1. Confirm all the tests are passing: `npm run test` (see also `test/index.html` for browser testing)
134 1. Confirm all the tests are passing in IE9:
135 1. `npm run watch:umd`
136 1. Open an [IE9 VM](https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/)
137 1. Open `http://yourip:8081/test/ie.html` in IE
138 1. Prepare a release: `npm run release`
139 1. Review the files that were just built in the previous step. Try out the newly-built docs and demos.
140 1. Add the the release to git: `git add . && git commit -m "Build $VERSION"`
141 1. Update the package version: `npm version $VERSION`
142 1. Push the release changes: `git push && git push --tags`
143 1. Publish the release to npm: `npm publish .`
144 1. [Create a release](https://github.com/cytoscape/cytoscape.js/releases/new) for Zenodo from the latest tag
145 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.
146
147
148
149## Tests
150
151Mocha 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`).