A beautiful debug assistant for your CanxJS application. Insight into requests, exceptions, database queries, and more.
Monitor incoming HTTP requests, response statuses, and duration.
inspect executed database queries and their execution time.
Track background jobs and scheduled tasks execution.
View application logs and exceptions in real-time.
1bun add @canxjs/telescope2# or3npm install @canxjs/telescope
Telescope can be configured in your `config/telescope.ts` or passed directly when initializing.
1import { telescope } from '@canxjs/telescope';23// Initialize with custom config4telescope.init({5enabled: process.env.NODE_ENV === 'development',6limit: 100,7watchers: {8request: true,9query: true,10exception: true,11log: true,12job: false13}14});
Access the dashboard at /telescope in your browser.