npm.io
3.0.3 • Published 7 years ago

topo

Licence
BSD-3-Clause
Version
3.0.3
Deps
1
Size
9 kB
Vulns
1
Weekly
0
Stars
109
DeprecatedThis package is deprecated

topo

Topological sorting with grouping support.

Build Status

Lead Maintainer: Devin Ivy

Usage

See the API Reference

Example

const Topo = require('topo');

const morning = new Topo();

morning.add('Nap', { after: ['breakfast', 'prep'] });

morning.add([
    'Make toast',
    'Pour juice'
], { before: 'breakfast', group: 'prep' });

morning.add('Eat breakfast', { group: 'breakfast' });

morning.nodes;        // ['Make toast', 'Pour juice', 'Eat breakfast', 'Nap']

Keywords