15 modules · 33,705 lines · replaces 60+ npm packages
The complete JavaScript toolkit built from scratch — no React, no Express, no Zod.
Each module is a production-grade replacement for an entire category of npm packages.
Fine-grained reactivity that updates exactly what changed — bypasses VDOM diffing entirely.
// forge/client — reactive signals import { signal, computed } from '@hyperbridge/forge/client'; // Create a reactive signal const count = signal(50); // Derived computeds — auto-update const doubled = computed(() => count.value * 2 ); const squared = computed(() => count.value ** 2 ); // No re-render. No diff. Just works. count.value = 75; // → all computeds update
Canvas-powered charts rendered entirely by HBForge — no Chart.js, no D3, no Recharts.
Beautiful, accessible notifications with zero configuration. No react-hot-toast, no Sonner.
Real-time client validation + server-side safeParse via the /api/validate endpoint.
// Client-side schema (forge/schema) const { z } = ForgeSchema; const schema = z.object({ name: z.string().min(2), email: z.string().email(), age: z.number().int().optional(), }); // Real-time validation const result = schema.safeParse(data); if (result.success) { // POST to /api/validate // Server also runs safeParse() } // Replaces: Zod, Yup, Joi, Valibot
One file. All 15 modules. Still lighter than a partial React stack.
No React. No Vue. No jQuery. Every interaction on this page is powered by HBForge modules.
One package. Tree-shakeable. Works everywhere.
Currently available for Enterprise clients only
Opening to the Developer Community on June 25, 2026
$ npm install @hyperbridge/forge
import { createServer } from '@hyperbridge/forge/server'; const app = createServer(); app.get('/hello', (req, res) => { res.json({ message: 'Hello from HBForge' }); }); app.listen(3000); // Replaces Express, Fastify, Apollo
import { signal, computed, useEffect } from '@hyperbridge/forge/client'; const count = signal(0); const double = computed(() => count.value * 2); useEffect(() => { console.log('count changed:', count.value); }); // Replaces React, React Router, TanStack Query
import { z } from '@hyperbridge/forge/schema'; const UserSchema = z.object({ name: z.string().min(2).max(50), email: z.string().email(), age: z.number().int().min(0).max(150).optional(), }); // Replaces: Zod, Yup, Joi, Valibot const result = UserSchema.safeParse(data);
The complete story behind building the zero-dependency JavaScript framework that replaces 60+ npm packages
Modern JavaScript applications suffer from dependency hell. A typical web project pulls in 300-500 npm packages just to handle:
Each adds complexity, security surface area, bundle size, and maintenance burden.
What if you could build complete, production-ready applications with a single, cohesive framework that includes:
All in 33,705 lines of pure JavaScript with zero external dependencies.
HBForge was born from frustration. The founding team at HyperBridge Digital spent years building production applications and watching:
We asked: "What if we built everything ourselves?"
v1.0.0 (Initial Launch) — 7,957 lines across 8 core modules (client, server, auth, data, form, animate, notify, schema). Proved the concept: build a real framework without npm.
v2.0.0 (Major Expansion) — 3x growth to 14 modules, adding: PDF generation, full-text search, charts, email/SMTP, testing framework, CLI tools, internationalization.
v3.0.0 (Current) — 33,705 lines. 15 complete modules. 700+ documented APIs. Production-ready for entire stack: frontend, backend, databases, real-time, email, reports, search.
No third-party code means no supply chain attacks. You control everything.
Tiny bundles. No redundant polyfills. Fast load times and instant startup.
Single npm package. No version conflicts. No nested node_modules hell.
All modules designed together. Consistent APIs. Better DX than mixing libraries.
Own your entire tech stack. No waiting for upstream fixes. Debug everything.
One codebase. One update cycle. No transitive dependency issues.
HBForge is production-ready and battle-tested. Built by engineers who use it daily in real applications. We're committed to:
Built by HyperBridge Digital's founding team
Chief Executive Officer
CEO & Founder of HyperBridge Digital. Full-stack architect designing the HBForge ecosystem. Based in Chennai, India.
HBForge delivers competitive performance with zero dependency overhead.
React + Express + Prisma + Zod + ...
One framework. Everything built-in.
The framework trusted by enterprises for production-grade applications. Zero dependencies. Total control.
Currently Enterprise Only
Opening to the Developer Community on June 25, 2026