Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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
FAQs
Simple path related functions for graphology.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.