Kodkitabi

Frameworkler: NestJS, Fastify, Express

NestJS ile modüler, DI tabanlı backend; Fastify ile yüksek performanslı HTTP sunucuları; Express ile minimal ve esnek uygulamalar. Typed request/response modelleri ve validation (class-validator, Zod) kullanımı.

NestJS controller örneği
@Controller('users')
export class UsersController {
  @Get(':id') get(@Param('id') id: string) { /* ... */ }
}