npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cytoscape-for-sbgn

v2.7.1-1.1

Published

Graph theory (a.k.a. network) library for analysis and visualisation

Downloads

2

Readme

About

This is a fork of cytoscape.js ( https://github.com/cytoscape/cytoscape.js ) library. It is forked and modified for internal usage in sbgnviz.js

Cytoscape.js

GitHub license npm npm installs master branch tests unstable branch tests

Graph theory (a.k.a. network) library for analysis and visualisation : http://js.cytoscape.org

Description

Cytoscape.js is a fully featured 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.

Cytoscape.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.

You can get started with Cytoscape.js with one line:

var cy = cytoscape({ elements: myElements, container: myDiv });

Learn more about the features of Cytoscape.js by reading its documentation.

Documentation

You can find the documentation and downloads on the project website.

Roadmap

Future versions of Cytoscape.js are planned in the milestones of the Github issue tracker. You can use the milestones to see what's currently planned for future releases.

Contributing to Cytoscape.js

Please refer to CONTRIBUTING.md.

Build dependencies

Install node, npm and gulp. Of course, npm install before using gulp.

Build instructions

Run gulp <target> in the console. The main targets are:

Building:

  • build (default) : build the library
  • clean : clean the build directory
  • watch : automatically build lib and tests for debugging
  • zip : build the release ZIP
  • dist : update the distribution JS for npm, bower, etc.

Testing:

  • test : run the Mocha unit tests
  • lint : lint the JS sources via jshint
  • benchmark : run benchmark regression tests
  • benchmark-single : run benchmarks only for the suite specified in benchmark/single
  • sniper : runs a BioJS sniper server that hosts demos

Documentation:

  • docs : build the documentation template
  • docsmin : build the documentation template with all resources minified
  • docspub : build the documentation for publishing (ZIPs, JS refs, etc.)
  • docspush : push the built documentation to js.cytoscape.org
  • unstabledocspush : push the built documentation to js.cytoscape.org/unstable

Release instructions

  1. Make sure the docs are updated with the list of releases in documentation/md/intro.md
  2. Update the VERSION environment variable, e.g. export VERSION=1.2.3
  3. Confirm JS files pass linting: gulp lint
  4. Confirm all tests passing: gulp test
  5. Test the docs and demos with the latest code: gulp docspub
  6. Build and publish the release: gulp publish

Tests

Mocha tests are found in the test directory. The tests can be run in the browser or they can be run via Node.js (gulp test or mocha).