oblit
v0.1.5
Published
Obliterate latency. Zero-dependency, binary-first, crash-free network protocol for Node.js. 50% bandwidth savings.
Maintainers
Readme
⚡ Why Oblit?
Modern apps suffer from JSON bloat. Sending { "x": 100, "y": 200 } over the network wastes bytes on brackets, quotes, and keys.
OBLIT solves this by converting your data into pure binary buffers. It cuts your bandwidth usage in half while maintaining extreme speed.
📊 Real World Benchmark (50,000 Messages)
| Metric | Standard JSON | 🛡️ OBLIT | Impact | | :--- | :--- | :--- | :--- | | Traffic Volume | 1318 KB | 585 KB | 📉 55% Savings | | Packet Size | 27 Bytes | 12 Bytes | ⚡ 2x Smaller | | Dependency Count| Many | 0 | 🛡️ Pure Code |
Test environment: Node.js v22, Localhost throughput test.
🚀 Installation
npm install oblit
