Web Visualizations Made Simple
Build stunning 3D visualizations and dynamic dashboards using our WebAssembly-powered framework. With built-in WebGPU acceleration and declarative scene definitions, you can create complex network topologies, physics simulations, and data visualizations with minimal boilerplate.
3D Visualizations
Create immersive 3D experiences using WebGPU. The framework provides primitives for complex geometries, animated particle systems, and interactive UI elements directly in the browser without additional tooling.
import { Scene, Sphere, Animation } from '@lambowaviz/core';
const scene = new Scene();
scene.add(new Sphere({ radius: 2.0 }));
new Animation(scene).start();
Live Dashboards
Connect to real-time data streams and transform them into animated metrics, heatmaps, and timeline visualizations. Our framework handles data ingestion, normalization, and rendering pipeline with sub-millisecond updates.
const dataSource = new RealtimeSource('wss://metrics.example.com');
const dashboard = Dashboard.build()
.addChart('network-activity', NetworkChart)
.addMeter('system-load', LoadMeter);
dataSource.connect(dashboard);
98%
CPU
23.6GB
RAM
API Reference
Available Modules
Quick Examples
import { Visualizer } from '@lambowaviz/visualization';
const config = {
type: 'network',
sources: ['data.json'],
theme: {
colors: {
primary: '#6366F1',
accent: '#38B2AC'
}
}
};
const viz = new Visualizer(config);
viz.mount('#visualization-container');
Ready to Build?
Start your first project with a choice of pre-built templates for common visualization tasks. All examples are fully working codebases you can clone and modify.
🛠 Try Template Project