
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
graphology-simple-path
Advanced tools
Simple path related functions to be used with graphology
. A "simple path" is a path where a node is not repeated.
npm install graphology-simple-path
Collects every simple path between a source and a target node in the given graph.
Note that this function also works with cycles.
import {allSimplePaths} from 'graphology-simple-path';
const graph = new Graph();
graph.mergeEdge('1', '2');
graph.mergeEdge('1', '3');
graph.mergeEdge('2', '3');
const paths = allSimplePaths(graph, '1', '3');
>>> [
['1', '3'],
['1', '2', '3']
]
// To get cycles, just pass same source & target
const cycles = allSimplePaths(graph, '1', '1');
// To limit traversal to a certain depth
const limitedPaths = allSimplePaths(graph, '1', '3', {maxDepth: 2});
Arguments
Collects every simple path, represented by the followed edges, between a source and a target node in the given graph.
Note that this function also works with cycles but does not work with multi graphs yet.
import {allSimpleEdgePaths} from 'graphology-simple-path';
const graph = new Graph();
graph.mergeEdgeWithKey('1->2', '1', '2');
graph.mergeEdgeWithKey('1->3', '1', '3');
graph.mergeEdgeWithKey('2->3', '2', '3');
const paths = allSimpleEdgePaths(graph, '1', '3');
>>> [
['1->3'],
['1->2', '2->3']
]
// To get cycles, just pass same source & target
const cycles = allSimpleEdgePaths(graph, '1', '1');
// To limit traversal to a certain depth
const limitedPaths = allSimpleEdgePaths(graph, '1', '3', {maxDepth: 2});
Arguments
Collects every simple path, represented by groups of equivalent followed edges, between a source and a target node in the given multi graph.
Note that this function also works with cycles and that, even if it can work with a simple graph, it has not be designed to be useful in this case.
import {allSimpleEdgeGroupPaths} from 'graphology-simple-path';
const graph = new Graph();
graph.mergeEdgeWithKey('1->2a', '1', '2');
graph.mergeEdgeWithKey('1->2b', '1', '2');
graph.mergeEdgeWithKey('1->3a', '1', '3');
graph.mergeEdgeWithKey('2->3a', '2', '3');
const paths = allSimpleEdgeGroupPaths(graph, '1', '3');
>>> [
[['1->3a']],
[['1->2a', '1->2b'], ['2->3a']]
]
// To get cycles, just pass same source & target
const cycles = allSimpleEdgeGroupPaths(graph, '1', '1');
// To limit traversal to a certain depth
const limitedPaths = allSimpleEdgeGroupPaths(graph, '1', '3', {maxDepth: 2});
Arguments
0.2.0
#.hasNodeAttribute
& #.hasEdgeAttribute
.#.removeNodeAttribute
& #.removeEdgeAttribute
.#.mergeNode
.#.mergeEdge
, #.mergeEdgeWithKey
and friends.#.relatedNode
to #.opposite
.onDuplicateNode
& onDuplicateEdge
options.FAQs
Simple path related functions for graphology.
The npm package graphology-simple-path receives a total of 45,849 weekly downloads. As such, graphology-simple-path popularity was classified as popular.
We found that graphology-simple-path demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.