# Decorator Use

Decorator operation
Module
import { Use } from "@tsed/platform-middlewares"
Source/packages/platform/platform-middlewares/src/types/decorators/use.ts

# Overview

function Use(...args: any[]): Function;

# Description

Mounts the specified middleware function or functions at the specified path: the middleware function is executed when the base of the requested path matches `path.

@Controller('/')
@Use(Middleware1)
export class Ctrl {

   @Get('/')
   @Use(Middleware2)
   get() { }
}

1
2
3
4
5
6
7
8
9