graphology-library
v0.8.0
Published
Graphology's standard library.
Downloads
589
Maintainers
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';