nodeboot-starter-validation

Installation
SKILL.md

@nodeboot/starter-validation

Use this starter when request DTOs should be rejected automatically instead of manually validated in every controller action. It layers class-validator onto Node-Boot request binding.

Enable

@EnableDI(Container)
@EnableValidations()
@EnableComponentScan()
@NodeBootApplication()
export class App implements NodeBootApp {
    start(): Promise<NodeBootAppView> {
        return NodeBoot.run(ExpressServer);
    }
}

Minimal DTO + controller usage

Installs
1
GitHub Stars
10
First Seen
Aug 11, 2026
nodeboot-starter-validation — nodejs-boot/node-boot