graphology-library

Graphology's standard library.

Usage no npm install needed!

<script type="module">
  import graphologyLibrary from 'https://cdn.skypack.dev/graphology-library';
</script>

README

Graphology Aggregated Standard Library

A npm package gathering every library from the graphology ecosystem.

Installation

npm install graphology-library

Usage

The whole list of graphology packages included in this collected library can be found here.

You can import packages using the documented examples of each package or thusly:

// Importing a sub package
import * as metrics from 'graphology-library/metrics';

metrics.density(graph);

// Importing parts of the library
import {metrics, layout} from 'graphology-library';

// Importing the whole library
import * as lib from 'graphology-library';