C
CanxJS
v1.6.2
  • Learn
  • Blog
  • Showcase
C
CanxJS

Ultra-fast async MVC backend framework for Bun. Build production-ready APIs with elegance and speed.

Resources

  • Documentation
  • Learn
  • Blog
  • Showcase

Documentation

  • Introduction
  • Installation
  • Core Concepts
  • CLI Commands
  • API Reference

Legal

  • Privacy Policy
  • Terms of Service

© 2026 CanxJS. All rights reserved.

Built with ❤️ for Candra Kirana

  • Starter Kits
  • Canx Studio
  • Queue Dashboard
  • Canx Admin
New Feature

CanxJS Studio

A powerful TUI (Terminal User Interface) dashboard to monitor and debug your application in real-time.

Real-Time Stats

Monitor RPS, Memory, and Uptime instantly.

Route Inspector

View all registered routes and controllers.

Module Graph

Visualize your module dependencies.

Zero Config

Connects automatically to your running app.

Getting Started

First, register the DevToolsModule in your application:

app.ts
1import { createApp, DevToolsModule } from "canxjs";
2
3const app = createApp({
4 imports: [
5 // Registers the API endpoints for the Studio
6 DevToolsModule
7 ],
8 port: 3000
9});

Launch Studio

In a separate terminal window, run the studio command:

terminal
1bun run canx studio

Debugging

Learn more about the CLI tools.