
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
heimdalljs-graph
Advanced tools
`heimdalljs-graph` is intended to be the primary entry point for doing visualizations with data gathered by [Heimdall](https://github.com/heimdalljs/heimdalljs-lib).
The heimdalljs-graph npm package is a tool for creating and manipulating graphs, particularly useful for performance monitoring and profiling in JavaScript applications. It allows users to create nodes, edges, and traverse the graph to analyze performance data.
Creating a Graph
This feature allows you to create a new graph instance using the heimdalljs-graph package.
const { Graph } = require('heimdalljs-graph');
const graph = new Graph();
Adding Nodes
This feature allows you to add nodes to the graph. Nodes can represent various points of interest in your application.
const { Graph, Node } = require('heimdalljs-graph');
const graph = new Graph();
const node = new Node('node1');
graph.addNode(node);
Adding Edges
This feature allows you to add edges between nodes in the graph, representing relationships or dependencies between different parts of your application.
const { Graph, Node } = require('heimdalljs-graph');
const graph = new Graph();
const node1 = new Node('node1');
const node2 = new Node('node2');
graph.addNode(node1);
graph.addNode(node2);
graph.addEdge(node1, node2);
Traversing the Graph
This feature allows you to traverse the graph and perform operations on each node. In this example, it logs the ID of each node.
const { Graph, Node } = require('heimdalljs-graph');
const graph = new Graph();
const node1 = new Node('node1');
const node2 = new Node('node2');
graph.addNode(node1);
graph.addNode(node2);
graph.addEdge(node1, node2);
graph.traverse((node) => {
console.log(node.id);
});
Graphlib is a library for creating and manipulating directed graphs in JavaScript. It provides similar functionalities to heimdalljs-graph, such as adding nodes and edges, and traversing the graph. However, it is more general-purpose and not specifically tailored for performance monitoring.
Cytoscape is a graph theory library for visualizing and analyzing complex networks. It offers a wide range of features for graph manipulation and visualization, making it more suitable for applications that require detailed graph analysis and visualization compared to heimdalljs-graph.
Dagre is a JavaScript library for laying out directed graphs. It focuses on arranging nodes and edges in a visually appealing manner, which can complement heimdalljs-graph's functionalities by providing better visualization options.
heimdalljs-graph
is intended to be the primary entry point for doing visualizations with data
gathered by Heimdall.
Example:
const heimdallGraph = require('heimdalljs-graph');
let graph = heimdallGraph.loadFromFile('some/path/on/disk.json');
Example:
const heimdallGraph = require('heimdalljs-graph');
let graph = heimdallGraph.loadFromNode(heimdallNode);
Once data is loaded, the resulting object is called a "node". Each node in the graph provides an API for iterating its subgraph as well as iterating its own stats.
The API that each node supports is:
label
toJSON
adjacentIterator
dfsIterator
bfsIterator
A POJO property that describes the node. It will always include a name
property and for broccoli nodes will include a broccoliNode
property.
Example:
node.label === {
name: 'TreeMerger (allTrees)',
broccoliNode: true,
}
Returns a POJO that represents the serialized subgraph rooted at this node (the entire tree if called on the root node).
There is no particular guarantee about the format (as it will change over time), but a general example might be:
// for a graph
// TreeMerger
// |- Babel_1
// |- Babel_2
// |--|- Funnel
console.log(JSON.stringify(node.toJSON(), null, 2));
// might print
//
{
nodes: [{
id: 1,
children: [2,3],
stats: {
time: {
self: 5000000,
},
fs: {
lstat: {
count: 2,
time: 2000000
}
},
own: {
}
}
}, {
// ...
}]
}
Returns an iterator that yields every node in the subgraph sourced at this node.
Nodes are yielded in depth-first order. If the optional parameter until
is
passed, nodes for which until
returns true
will not be yielded, nor will
nodes in their subgraph, unless those nodes are reachable by some other path.
Example:
// for a graph
// TreeMerger
// |- Babel_1
// |--|- Funnel
// |- Babel_2
for (n of node.dfsIterator()) {
console.log(n.label.name);
}
// prints
//
// TreeMerger
// Babel_1
// Funnel
// Babel_2
Returns an iterator that yields every node in the subgraph sourced at this node.
Nodes are yielded in breadth-first order. If the optional parameter until
is
passed, nodes for which until
returns true
will not be yielded, nor will
nodes in their subgraph, unless those nodes are reachable by some other path.
Example:
// for a tree
// TreeMerger
// |- Babel_1
// |--|- Funnel
// |- Babel_2
for (n of node.bfsIterator()) {
console.log(n.label.name);
}
// prints
//
// TreeMerger
// Babel_1
// Babel_2
// Funnel
Returns an iterator that yields each adjacent outbound node. There is no guarantee about the order in which they are yielded.
Example:
// for a graph
// TreeMerger
// |- Babel_1
// |--|- Funnel
// |- Babel_2
for (n of node.adjacentIterator()) {
console.log(n.label.name);
}
// prints
//
// Babel_1
// Babel_2
Returns an iterator that yields [name, value]
pairs of stat names and values.
Example:
// for a typical broccoli node
for ([statName, statValue] of node.statsIterator()) {
console.log(statName, statValue);
}
// prints
//
// "time.self" 64232794
// "fs.statSync.count" 40
// "fs.statSync.time" 401232123
// ...
FAQs
`heimdalljs-graph` is intended to be the primary entry point for doing visualizations with data gathered by [Heimdall](https://github.com/heimdalljs/heimdalljs-lib).
The npm package heimdalljs-graph receives a total of 121,882 weekly downloads. As such, heimdalljs-graph popularity was classified as popular.
We found that heimdalljs-graph demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.