Arkstack logo

Arkstack

Node.js Framework — Runtime Agnostic

Server running — ready for requests
Fast by default
Zero-bloat core. Ships only what you need.
Adapters
Express, Fastify, Hono, Koa — swap runtimes freely.
Structured
Modular conventions for Node.js.
get started
// src/routes/api.ts
import { Router } from '@arkstack/driver-express'

Router.get('/', () => {
  return { status: 'ok' }
})