Hyperstack provides official SDKs for multiple languages and frameworks, making it easy to integrate real-time Solana data streaming into your applications.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/hypertekorg/hyperstack/llms.txt
Use this file to discover all available pages before exploring further.
Available SDKs
TypeScript
Pure TypeScript SDK for Node.js and web applications
React
React SDK with hooks for building real-time UIs
Rust
High-performance Rust client SDK
Python
Python SDK for backend services (work in progress)
SDK Comparison
| SDK | Package | Version | Status | Use Case |
|---|---|---|---|---|
| TypeScript | hyperstack-typescript | 0.5.3 | Stable | Node.js, web apps, any JavaScript framework |
| React | hyperstack-react | 0.5.3 | Stable | React applications with hooks |
| Rust | hyperstack-sdk | 0.5.3 | Stable | High-performance services, CLI tools |
| Python | hyperstack-sdk | 0.1.0 | WIP | Backend services, data pipelines |
Quick Start
TypeScript
React
Rust
Python
Common Features
All SDKs provide:- Real-time streaming - Subscribe to live data updates via WebSocket
- Type safety - Full type definitions generated from your stack spec
- Auto-reconnection - Automatic reconnection with configurable backoff
- State management - Built-in entity store with key-value lookups
- Multiple view types - Support for state, list, and derived views
- One-shot queries - Fetch current state without streaming
Choosing the Right SDK
Use TypeScript if:
- You’re building a Node.js backend or web application
- You need framework-agnostic streaming with AsyncIterables
- You want maximum compatibility across JavaScript runtimes
Use React if:
- You’re building a React application
- You want hooks-based integration (
use(),useOne()) - You need built-in state management with Zustand
Use Rust if:
- You need maximum performance and low latency
- You’re building CLI tools or backend services
- You want compile-time type safety and zero-cost abstractions
Use Python if:
- You’re building data pipelines or analytics tools
- You need integration with Python data science libraries
- You prefer async/await Python syntax
SDK Generation
Generate type-safe SDKs from your stack specification using the Hyperstack CLI:Next Steps
TypeScript SDK
Learn about the TypeScript SDK
React SDK
Build real-time React UIs
Rust SDK
High-performance streaming
Python SDK
Backend integration (WIP)