3.12.2 • Published 3 months ago

koatty_cli v3.12.2

Weekly downloads
143
License
Apache 2.0
Repository
github
Last release
3 months ago

koatty_cli

Koatty command line tool.

Usage

Create koatty project

koatty new projectName

cd ./projectName

yarn install  // or npm i

npm start

Create a module in the koatty project

  • 1.Create a Controller
// http controller
kt controller test

// grpc controller
kt controller -t grpc test

// websocket controller
kt controller -t websocket test
  • 2.Create a Service
kt service test

// service with interface
kt service -i test
  • 3.Create a Middleware
kt middleware test
  • 4.Create a Model
//default use typeorm
kt model test
  • 5.Create a Aspect

定义切面类:

kt aspect test

使用切面:

@Controller()
@BeforeEach("TestAspect")  //类的每一个方法执行之前执行
export class TestController {
    app: App;

    @RequestMapping("/test", RequestMethod.ALL)
    @After("TestAspect") //test方法执行之前执行
    async test() {
        const info = await this.testService.test();
        return this.body(info);
    }
}
  • 6.Create a DTO class

定义数据验证类:

kt dto test

修改数据验证类:

export class TestDTO {
    @IsNotEmpty()
    name: string;

    @Min(0)
    @Max(120)
    age: number;
}

使用实体类进行验证:

@Controller()
export class TestController {
    app: App;

    @RequestMapping("/test", RequestMethod.ALL)
    @Validated() // <== 开启验证   
    async test(@Get() param: TestDTO) { // <== 指定DTO
        const info = await this.testService.test();
        return this.body(info);
    }
}

Create Koatty Extension Project

  • 1、Create a Middleware Project
kt new projectName -t middleware

cd ./projectName

yarn install  // or npm i

npm start
  • 2、Create a Plugin Project
kt new projectName -t plugin

cd ./projectName

yarn install  // or npm i

npm start
3.12.1

3 months ago

3.12.0

3 months ago

3.12.2

3 months ago

3.11.2

1 year ago

3.11.1

1 year ago

3.11.0

1 year ago

3.10.3

2 years ago

3.10.2

2 years ago

3.10.1

2 years ago

3.10.0

2 years ago

3.9.3

2 years ago

3.9.4

2 years ago

3.9.2

2 years ago

3.8.2

2 years ago

3.8.1

2 years ago

3.7.3

2 years ago

3.7.2

2 years ago

3.7.1

3 years ago

3.7.0

3 years ago

3.6.2

3 years ago

3.6.1

3 years ago

3.6.0

3 years ago

3.4.10

4 years ago

3.4.8

4 years ago

3.4.7

4 years ago

3.5.3

4 years ago

3.5.2

4 years ago

3.5.0

4 years ago

3.4.4

4 years ago

3.4.2

4 years ago

3.4.6

4 years ago

3.3.2

4 years ago

3.3.0

4 years ago

3.1.2

5 years ago

3.1.0

5 years ago

3.0.12

5 years ago

3.0.10

5 years ago

3.0.8

5 years ago

3.0.4

5 years ago

3.0.3

5 years ago

3.0.2

5 years ago

3.0.1

5 years ago

3.0.6

5 years ago

3.0.0

5 years ago

2.5.1

5 years ago

2.5.0

5 years ago

2.3.0

5 years ago

2.2.1

5 years ago

2.2.0

5 years ago

2.1.1

5 years ago

2.1.0

5 years ago

1.21.0

5 years ago

1.20.2

5 years ago

1.20.1

5 years ago

1.20.0

5 years ago

1.19.1

5 years ago

1.19.0

5 years ago

1.18.0

5 years ago

1.17.0

5 years ago

1.16.0

5 years ago

1.15.3

5 years ago

1.15.2

5 years ago

1.15.1

5 years ago

1.15.0

5 years ago

1.14.1

5 years ago

1.14.0

5 years ago

1.12.9

5 years ago

1.12.8

5 years ago

1.12.7

5 years ago

1.12.6

5 years ago

1.12.5

5 years ago

1.12.4

5 years ago

1.12.3

5 years ago

1.12.2

5 years ago

1.12.0

6 years ago

1.11.0

6 years ago

1.10.3

6 years ago

1.10.2

6 years ago

1.10.1

6 years ago

1.10.0

6 years ago

1.7.0

6 years ago

1.6.12

6 years ago

1.6.2

6 years ago

1.6.1

6 years ago

1.6.0

6 years ago

1.5.0

6 years ago

1.4.0

6 years ago

1.3.10

6 years ago

1.3.5

6 years ago

1.3.4

6 years ago

1.3.3

6 years ago

1.3.2

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.3

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.4

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago