A powerful TUI (Terminal User Interface) dashboard to monitor and debug your application in real-time.
Monitor RPS, Memory, and Uptime instantly.
View all registered routes and controllers.
Visualize your module dependencies.
Connects automatically to your running app.
First, register the DevToolsModule in your application:
DevToolsModule
1import { createApp, DevToolsModule } from "canxjs";23const app = createApp({4 imports: [5 // Registers the API endpoints for the Studio6 DevToolsModule7 ],8 port: 30009});
import { createApp, DevToolsModule } from "canxjs";
const app = createApp({
imports: [
// Registers the API endpoints for the Studio
],
port: 3000
});
In a separate terminal window, run the studio command:
1bun run canx studio
bun run canx studio
Learn more about the CLI tools.