infrastructure_
Open-source tools for engineers who ship. No dashboards, no drag-and-drop, no abstraction tax. Just fast, reliable infrastructure primitives.
// PRODUCTS
VOIDCTL
Infrastructure orchestration engine. Manages containers, VMs, and serverless functions from a single CLI.
LATTICE
Distributed key-value store with sub-millisecond reads. Built for edge computing at global scale.
SIGNAL
Real-time event streaming pipeline. Process millions of events per second with exactly-once delivery.
// SPECS
| Language | Rust + Go |
| Throughput | 2.4M req/sec |
| Latency (p99) | < 3ms |
| Storage Engine | LSM-tree (custom) |
| Replication | Raft consensus |
| Compression | LZ4 + ZSTD |
// TEAM
@ghost (Tokyo, JP)
Kai Nakamura
Founder / Lead Engineer
@syntax (Berlin, DE)
Ada Sterling
Runtime Engineer
@null (Portland, US)
Marcus Webb
Distributed Systems
@byte (Bangalore, IN)
Priya Sharma
Storage Engine Lead
// CHANGELOG
// API
// Initialize client
const client = new VoidClient({
endpoint: "https://api.void.systems",
token: process.env.VOID_TOKEN,
})
// Deploy a function
await client.deploy("my-function", {
runtime: "wasm",
regions: ["us-east", "eu-west", "ap-south"],
})