@hydro-project/hydroscope
v1.3.0
Published
React-based graph visualization library for Hydro dataflow programs
Maintainers
Readme
@hydro-project/hydroscope
A web-based interactive graph visualization and exploration library, well suited for exploring large directed graphs, especially those that have nested subgraph structure.
Hydroscope was originally designed for visualizing Hydro dataflow graphs, which come with two distinct nested hierarchies: call stacks and runtime locations. However Hydroscope is not tightly coupled to Hydro and is configurable for use with any directed graph -- nested or flat.
Features
- Hierarchical Graph Visualization: Visualize complex nested container structures with automatic layout
- Interactive Controls: Pan, zoom, search, and navigate through graph hierarchies
- Smart Node Collapsing: Collapse and expand containers with preserved relationships
- Search and Focus: Functionality to search for nodes in the graph and hide subgraphs to improve focus.
- Info Panels: View detailed node information with context-aware popups
Installation
npm install @hydro-project/hydroscopeUsage Guides
- Embedding Hydroscope - Complete guide with examples, props, and patterns
- Embedding HydroscopeCore - Advanced customization guide
- JSON Format - Data format specification
Quick Start
Loading from JSON File
The most common way to use Hydroscope is to load a graph from a JSON file:
import { Hydroscope } from "@hydro-project/hydroscope";
import "@hydro-project/hydroscope/style.css";
import { useState, useEffect } from "react";
function App() {
const [graphData, setGraphData] = useState(null);
useEffect(() => {
// Load your graph JSON file
fetch("/data/my-graph.json")
.then((res) => res.json())
.then((data) => setGraphData(data))
.catch((err) => console.error("Failed to load graph:", err));
}, []);
if (!graphData) return <div>Loading...</div>;
return (
<div style={{ width: "100vw", height: "100vh" }}>
<Hydroscope
initialGraph={graphData}
onReady={(api) => console.log("Graph ready!", api)}
/>
</div>
);
}Minimal JSON Example
The simplest graph requires just nodes and edges:
{
"nodes": [
{ "id": "1", "nodeType": "Source", "shortLabel": "input" },
{ "id": "2", "nodeType": "Transform", "shortLabel": "process" },
{ "id": "3", "nodeType": "Sink", "shortLabel": "output" }
],
"edges": [
{ "id": "e1", "source": "1", "target": "2" },
{ "id": "e2", "source": "2", "target": "3" }
]
}Loading from URL or File Upload
function GraphViewer() {
const [graphData, setGraphData] = useState(null);
const handleFileUpload = (event) => {
const file = event.target.files[0];
if (file) {
const reader = new FileReader();
reader.onload = (e) => {
const data = JSON.parse(e.target.result);
setGraphData(data);
};
reader.readAsText(file);
}
};
return (
<div>
<input type="file" accept=".json" onChange={handleFileUpload} />
{graphData && (
<div style={{ width: "100vw", height: "90vh" }}>
<Hydroscope initialGraph={graphData} />
</div>
)}
</div>
);
}For complete JSON format documentation, see JSON Format Specification.
API Reference
<Hydroscope /> Component
Props
initialGraph: Graph data with nodes and edgesonReady: Callback invoked when the graph is rendered and interactiveenableSearch: Enable/disable search functionality (default: true)enableHierarchyTree: Show hierarchy tree view (default: true)layoutOptions: Custom ELK layout configuration
API Methods
When onReady is called, you receive an API object with methods:
getNodes(): Get all nodes in the graphgetEdges(): Get all edges in the graphcenterNode(nodeId): Center view on a specific nodecollapseContainer(nodeId): Collapse a container nodeexpandContainer(nodeId): Expand a container nodesearch(query): Search for nodes by label
Styling
Import the default styles in your application:
import "@hydro-project/hydroscope/style.css";You can customize the appearance by overriding CSS variables or providing your own styles.
Development
This project uses:
- TypeScript for type safety
- React Flow for graph rendering
- ELK (Eclipse Layout Kernel) for graph layout
- Vitest for testing
- Rollup for building
Setup
npm install
npm run build
npm testRunning Tests
# Run all tests
npm test
# Run performance tests
npm run test:performanceDocumentation
For detailed documentation, see:
- JSON Format Specification - Complete guide to the graph JSON format
- Development Documentation - Architecture and implementation details
- Logging Guide - Debugging and logging patterns
- Bridge Architecture - Bridge pattern details
- Performance Testing - Performance test suite
Sample Data
Example JSON files are available in test-data/:
paxos.json- Complex distributed system (543 nodes, 581 edges)chat.json- Simpler chat application example
These can be used as templates for your own graph data.
Contributing
Contributions are welcome! Please ensure all tests pass and follow the existing code style.
License
Apache-2.0 - See LICENSE for details.
Credits
Built by the Hydro Project team.
