Skip to content

Philosophy

Building a REST API on Node or Bun means picking a side. Minimal frameworks give you speed and a blank page. Enterprise frameworks give you structure, and ask you to pay for it in startup time and ceremony. IGNIS is the third option: LoopBack 4's architecture, running on Hono's engine.

The three-way landscape

CategoryFrameworksWhat you trade
MinimalExpress, Hono, Fastify, KoaSpeed and freedom for do-it-yourself architecture
BalancedIGNIS, Ts.EDA lighter footprint for slightly less ecosystem maturity
EnterpriseNestJS, LoopBack 4, AdonisJSProven structure for a heavier footprint and a steeper learning curve

IGNIS sits in the balanced row on purpose.

Why IGNIS exists

Three frameworks shaped the decision, and each fell short in a specific way.

LoopBack 4 had the right architectural ideas: decorators, the @repository pattern, a DataSource abstraction, a Component system, a Booter system. But it runs at roughly 15-20k req/s, and IBM has stopped developing it.

NestJS is popular and full-featured. But it wraps Express or Fastify behind an adapter layer. That layer is where its overhead comes from: it tops out around 25k req/s, and the framework asks for a lot of ceremony along the way.

Hono itself is fast, around 140k req/s. But it is deliberately unopinionated: a router and middleware, and nothing else. No dependency injection, no repository pattern, no convention for where code lives.

That's fine for one microservice, and painful once an API grows past a handful of endpoints.

IGNIS keeps LoopBack 4's architecture and swaps its engine for Hono's. The aim: hold the ~140k req/s ballpark while giving a growing API the structure LoopBack 4 offered. Concretely, that means:

  • A standalone dependency injection container (inversion, about 350 lines), with @inject, singleton and transient scopes, and constructor injection.
  • The same layered shape LoopBack 4 popularized: Controller -> Service (optional) -> Repository -> DataSource -> PostgreSQL.
  • Request validation and OpenAPI docs generated from the same Zod schema, so they can't drift apart.
  • A convention-based boot system that auto-discovers controllers, services, repositories, and data sources by file suffix.

How it performs

The numbers below are approximate and vary by workload, but the shape holds: IGNIS sits close to Hono, both several times faster than the enterprise frameworks it borrows its architecture from.

FrameworkStartupMemoryThroughputRuntimes
Hono~10ms~20MB~150k req/sBun, Node, Deno, Cloudflare Workers
IGNIS~30ms~30MB~140k req/sBun, Node
Fastify~50ms~40MB~80k req/sNode only
Express~100ms~50MB~15k req/sNode only
NestJS~500ms~100MB~25k req/sNode (Bun experimental)
LoopBack 4~800ms~120MB~20k req/sNode only

What you get, compared

AspectMinimal (Hono, Express)Enterprise (NestJS, LoopBack 4)IGNIS
Setup time5 minutes30+ minutes10 minutes
Learning curveLowHighMedium
BoilerplateMinimalHeavyModerate
Type safetyManualExcellentExcellent
IDE supportBasicExcellentGood
Dependency injectionManualBuilt-in, full-featuredBuilt-in, ~350-line container
Layered architectureDIYEnforcedGuided
Repository patternDIYBuilt-inBuilt-in
ValidationThird-partyBuilt-in (class-validator)Built-in (Zod)
OpenAPI / SwaggerThird-partyBuilt-inBuilt-in
AuthenticationDIYPassport + guardsComponent

Minimal frameworks give you total freedom. Enterprise frameworks are opinionated. IGNIS aims for a third mode - guided flexibility: sensible conventions, with an override for every one of them.

Ecosystem, today

AspectHonoNestJSIGNIS
GitHub stars~20k~70kNew
Weekly downloads~500k~3MStarting
First release202120172025
Production readyYesYesEarly stage
Corporate backingCloudflareTrilonIndependent
Official plugins20+50+Core only
Community packagesGrowingExtensiveFew
LTS / supportActiveEnterprise LTSPlanning

IGNIS is honest about where it stands: the architecture is proven, because it is LoopBack 4's. The framework carrying it is new.

When to use IGNIS, and when not to

SituationVerdictWhy
Medium API, 10-100 endpointsYesStructure prevents spaghetti code
Any team size, solo to largeYesThe same patterns scale either way
Want DI without NestJS/LoopBack 4's weightYesLighter container, ESM native
Coming from NestJS or LoopBack 4YesFamiliar patterns, better performance
Need a database, auth, and OpenAPI docsYesAll built in, ready to use
Performance mattersYesHono's speed with structure on top
Bun-first developmentYesNative Bun support
Growing out of a plain Hono projectYesSame foundation, incremental migration
3-5 endpoints, solo developerMaybeStart with Hono; migrate later if it grows
Quick prototype or MVPNoPlain Hono gets you to a first endpoint faster
Simple proxy or webhook handlerNoThe structure is overhead you don't need

Two situations push you toward an alternative even outside this table:

  • Reach for NestJS or LoopBack 4 if you need a large team (10+ developers) held to strict enterprise standards, complex microservice patterns like CQRS, or a hiring pool that already knows the framework.
  • Reach for plain Hono, Fastify, or Express if you're learning web development from scratch or deploying to the edge, where every millisecond of cold start counts.

What's still forming

Choosing IGNIS today trades a mature ecosystem for early access to a leaner enterprise framework. You get the dependency injection container, the repository pattern, Zod validation, and OpenAPI docs generated from the same schemas, running near Hono's throughput. IGNIS apps also compile to a single executable with Bun.

What you don't get yet: a large plugin ecosystem, extensive community packages, or a formal LTS release. The framework shipped in 2025 and is still building all three.

Next steps

  1. Check prerequisites - install the required tools.
  2. Complete the installation - build your first endpoint.
  3. Build a CRUD API - build a complete API.