NestJS Ninja logo

NestJS Ninja

Backend lessons & architecture notes

TypeScript servers

Build sharper NestJS systems.

Practical writing on modules, providers, queues, testing, microservices, and the decisions that keep backend codebases easy to change.

app.module.ts
@Module({
  imports: [
    ConfigModule.forRoot(),
    QueueModule,
    ObservabilityModule,
  ],
  controllers: [ArticlesController],
  providers: [ArticlesService],
})
export class AppModule {}

Latest

Recent posts

View all

Hello Markdown Blog

A first post showing frontmatter, GitHub-flavored markdown, tables, and highlighted code in this Next.js blog.

A Practical Next.js SEO Foundation

The baseline SEO pieces every App Router site should have: root metadata, canonical URLs, sitemap, robots.txt, and article metadata.