Release v0.7.3-stable

The Ultra-Fast Binary Web Protocol

Le Protocole Web Binaire Ultra-Rapide

Shift your business logic to the backend. Let the browser strictly follow orders via atomic binary patches. Zero JS to write. Zero build steps.

Déportez votre logique métier sur le serveur. Laissez le navigateur suivre les ordres via des patchs binaires atomiques. Zéro JS à écrire. Zéro étape de build.

index.nhtml
<!-- Augmented HTML -->
<h1 n-id="title">Hello</h1>

<p>
  Clicks: <strong n-id="counter">0</strong>
</p>

<button n-click="page.increment">Click me</button>
app.php
// Pure Backend Logic
function page_increment($event) {
  $count = ++$_SESSION['clicks'];

  return [
    Patch::setText('counter', $count),
    Patch::addClass('title', 'pulse')
  ];
}

Engineered for Performance

Conçu pour la Performance

Binary Speed

Vitesse Binaire

NBPS v0.7.3 protocol with Zstd compression. Sub-millisecond DOM synchronization over WebSockets.

Protocole NBPS v0.7.3 avec compression Zstd. Synchronisation DOM en moins d'une milliseconde.

Military Security

Sécurité Renforcée

HMAC-SHA256 signed events. Anti-replay sequence IDs. Native CSRF & CSWH protection.

Événements signés HMAC-SHA256. IDs de séquence anti-rejeu. Protection CSRF et CSWH native.

Zero Frontend JS

Zéro JS Frontend

No React, no Vue, no business logic in the browser. Your backend is the single source of truth.

Pas de React, pas de Vue, pas de logique métier dans le navigateur. Le backend est la seule source de vérité.

Modern Architecture

Architecture Moderne

A high-performance bridge between your backend and the user interface.

Un pont haute-performance entre votre backend et l'interface utilisateur.

Browser

bridge.js (~40KB)

EVENT ──▶

Rust Gateway

Clustering & Security

◀── BINARY PATCH

Backend

PHP / Python / Node

Flexible Deployment

Déploiement Flexible

DEDICATED

Rust Gateway

Gateway Rust

The standard for high performance. Handles WebSockets and binary logic natively.

Le standard pour la haute performance. Gère les WebSockets et la logique binaire nativement.

SHARED

Standard PHP

PHP Standard

Compatible with any shared hosting. Uses HTTP fallback for reactive updates.

Compatible avec n'importe quel hébergement mutualisé. Utilise un fallback HTTP réactif.

ZERO-SERVER

PHP-WASM

PHP-WASM

Perfect for static sites. Your entire backend logic runs in the browser.

Idéal pour les sites statiques. Toute votre logique backend tourne dans le navigateur.