
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
digraph-js
Advanced tools
Make Directed Graphs construction and manipulation easy, including cycle dependency detection and graph traversal.
digraph-js is a lightweight library allowing you to create a directed graph structure with embedded features such as cycle dependency detection and graph introspection (finding ancestors and successors for any given vertices). It can be used to model your underlying system (can be a filesystem or simply objects) as a graph.
$ npm install digraph-js
import { DiGraph } from 'digraph-js';
import assert from "node:assert";
const myGraph = new DiGraph();
const myDependencyA = { id: "dependencyA", adjacentTo: [], payload: {} };
const myDependencyB = { id: "dependencyB", adjacentTo: [], payload: {} };
// Add vertices to the graph
myGraph.addVertices(myDependencyA, myDependencyB);
// Link graph vertices: A ---> B link created
myGraph.addEdge({ from: myDependencyA, to: myDependencyB });
// Detect cycles (A ---> B and B ---> A)
myGraph.addEdge({ from: myDependencyB, to: myDependencyA });
assert.equal(myGraph.isAcyclic, false);
assert.deepEqual(myGraph.findCycles().cycles, [ ["dependencyB", "dependencyA"] ]);
Take for instance the image above with four Vertices each representing a JavaScript file.
Now the question is: what are the relationships between these files? In all programming languages, one file might import one or multiple files. Whenever a file imports another one, an implicit relationship is created.
hello.js
export function sayHello() { }
main.js
import { sayHello } from "hello.js";
As you can see above, main.js imports hello.js to use the sayHello
function. The static import creates an implicit relationship between both files.
In the fields of graphs, this relationship can be modeled as a directed edge
from main.js to hello.js (can be written as main.js ---> hello.js)
We can also say that main.js depends on hello.js.
We can update the graph with our edges represented:
Basically this graph says that:
This structure may seem simple but can in fact be used to model very complex schemas such as:
FAQs
A dependency free library to create and traverse directed graphs
The npm package digraph-js receives a total of 40,331 weekly downloads. As such, digraph-js popularity was classified as popular.
We found that digraph-js demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.