Pipes define a PipeTransform interface for transforming or validating data. They are a pattern for creating reusable transformation logic.
INFO
Automatic pipe execution via @UsePipes() is not yet available. Pipes can be used manually within handler methods or services.
PipeTransform Interface
typescript
interface PipeTransform {
transform(value: any, metadata?: PipeMetadata): Promise<any> | any;
}
interface PipeMetadata {
type: string;
data?: any;
}Creating a Pipe
Validation Pipe
typescript
import { Injectable, PipeTransform, BadRequestException } from "nestelia";
@Injectable()
class ValidationPipe implements PipeTransform {
transform(value: any) {
if (!value) {
throw new BadRequestException("Value is required");
}
return value;
}
}ParseInt Pipe
typescript
@Injectable()
class ParseIntPipe implements PipeTransform {
transform(value: string): number {
const parsed = parseInt(value, 10);
if (isNaN(parsed)) {
throw new BadRequestException(`"${value}" is not a valid integer`);
}
return parsed;
}
}Trim Pipe
typescript
@Injectable()
class TrimPipe implements PipeTransform {
transform(value: any) {
if (typeof value === "string") {
return value.trim();
}
if (typeof value === "object" && value !== null) {
for (const key of Object.keys(value)) {
if (typeof value[key] === "string") {
value[key] = value[key].trim();
}
}
}
return value;
}
}Using Pipes Manually
Until @UsePipes() is available, inject a pipe and apply it explicitly:
typescript
@Controller("/users")
class UserController {
constructor(
@Inject(UserService) private userService: UserService,
@Inject(ParseIntPipe) private parseIntPipe: ParseIntPipe,
@Inject(TrimPipe) private trimPipe: TrimPipe,
) {}
@Post("/")
create(@Ctx() ctx: any) {
const body = this.trimPipe.transform(ctx.body);
return this.userService.create(body);
}
@Get("/:id")
findOne(@Ctx() ctx: any) {
const id = this.parseIntPipe.transform(ctx.params.id);
return this.userService.findById(id);
}
}Schema-Based Validation
For input validation, prefer TypeBox schemas with the @Body, @Param, and @Query parameter decorators — they integrate directly with Elysia's runtime validation:
typescript
import { t } from "elysia";
@Post("/")
create(@Body(t.Object({
name: t.String({ minLength: 1 }),
email: t.String({ format: "email" }),
})) body: { name: string; email: string }) {
return this.userService.create(body);
}