@affectively/wasm-analytics-engine
v1.0.1
Published
High-performance WebAssembly analytics engine - metrics computation, event processing, aggregations.
Downloads
153
Maintainers
Readme
@affectively/wasm-analytics-engine
High-performance WebAssembly analytics engine written in Rust.
Features
- Metrics Computation - Calculate analytics metrics at WASM speed
- Event Processing - Process and transform event streams
- Aggregations - Efficient count, sum, average operations
- Funnel Analysis - Compute conversion funnels
Installation
npm install @affectively/wasm-analytics-engineQuick Start
import init, { process_events, compute_funnel, aggregate_metrics } from '@affectively/wasm-analytics-engine';
await init();
const processed = process_events(rawEvents);
const funnel = compute_funnel(events, ['signup', 'verify', 'purchase']);
const metrics = aggregate_metrics(events, ['pageviews', 'sessions']);License
MIT License
Made with ️ by AFFECTIVELY
