Skip to content
Open Source · MIT Licensed

KickJS

The Adaptive Node.js Framework

Decorator-driven APIs that run on Express, Fastify, or h3 — swap the engine in one line. REST, WebSocket, queues, scheduled jobs. TypeScript-first, pluggable, production-ready.

npx @forinda/kickjs-cli new my-api
src/index.ts
import { bootstrap } from '@forinda/kickjs'
import { fastifyRuntime } from '@forinda/kickjs/fastify'
import { modules } from './modules'

export const app = await bootstrap({
  modules,
  runtime: fastifyRuntime(), // or h3Runtime(), or Express
})

Released under the MIT License. Built with TypeScript — runs on Express, Fastify, or h3.