nestlens
v0.4.2
Published
Laravel Telescope-like debugging and monitoring tool for NestJS
Maintainers
Readme
Why NestLens?
⚡ Real-time Monitoring
Watch requests, queries, and exceptions as they happen. No more console.log debugging.
✨ Zero Configuration
Import and go. Works with Express & Fastify. Auto-detects TypeORM, Prisma, Bull, and more.
🔒 Security Built-in
IP whitelist, role-based access, and automatic data masking for production safety.
Install
npm install nestlensQuick Start
import { NestLensModule } from 'nestlens';
@Module({
imports: [
NestLensModule.forRoot({
enabled: process.env.NODE_ENV !== 'production',
}),
],
})
export class AppModule {}Visit http://localhost:3000/nestlens and start debugging.
