0.8.0 • Published 1 year ago

graphology-library v0.8.0

Weekly downloads
1
License
MIT
Repository
github
Last release
1 year ago

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';