The entire website
lives inside the link.
Bitty Page compresses full web applications—HTML, CSS, JavaScript, and assets—directly into a portable URL fragment hash. No backend servers, no cloud hosting bills, and no database queries. The browser decompresses and executes the app on arrival.
- Instant Client-Side Render: Decompresses and runs in under 5ms via Pako deflate.
- Zero Hosting Infrastructure: Runs anywhere a browser exists without backend maintenance.
- Immortal & Decentralized: As long as the link exists, your page remains accessible forever.
<!doctype html>
<html>
<body>
<h1>Interactive Bitty Page</h1>
<script>
// Runs 100% inside visitor browser
initMiniApp({ theme: 'crimson' });
</script>
</body>
</html>