1.1.21 • Published 4 years ago

febs-decorator v1.1.21

Weekly downloads
106
License
MIT
Repository
github
Last release
4 years ago

Some typescript decorators, like spring-validation and so on.

Setup

npm i febs-decorator

set config in tsconfig.json

"experimentalDecorators": true,
"emitDecoratorMetadata": true,

Example

Validation Example:

import {NotNull, Type} from 'febs-decorator';

class BeanDemo {
    @NotNull
    @Type.Boolean
    a: boolean = null
}

let obj = new BeanA();  // will throw a exception.

Service Example:

import {Service} from 'febs-decorator';

@Service()
class BeanDemo {
}

// get service instances.
@Autowired(BeanDemo)
let objArray:any[];

Bean Example:

import {Service, Bean} from 'febs-decorator';

@Service()
class BeanDemo {
  @Bean()
  foo(): Object {
    return {};
  }
}

// get bean instances.
@Autowired('foo')
let obj:Object;

FeignClient Example:

import { RestController, RequestMapping, RequestMethod } from "febs-decorator";

@FeignClient({name:'serviceName'})
export class BaseService {
  @RequestMapping({ path: '/api', method: RequestMethod.GET, feignCastType: BeanDemo })
  async request(): Promise<BeanDemo> {
    // fallback.
    throw new Error('Message Error');
  }
}

// request
let result:BeanDemo = new BaseService().request();

Reference

Validator Decorator

see readme

A set of validator decorators, e.g. @NotNull, @Max, @Min, @Range ..

Rest Decorator

see readme

A set of restful api decorators, e.g. @RestController, @FeignClient, @RequestMapping, @RequestBody, @PathVariable ..

1.1.21

4 years ago

1.1.20

4 years ago

1.1.9

4 years ago

1.1.12

4 years ago

1.1.11

4 years ago

1.1.10

4 years ago

1.1.16

4 years ago

1.1.15

4 years ago

1.1.14

4 years ago

1.1.13

4 years ago

1.1.19

4 years ago

1.1.18

4 years ago

1.1.17

4 years ago

1.1.8

4 years ago

1.1.7

4 years ago

1.1.6

4 years ago

1.1.5

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

1.0.3

4 years ago

0.2.13

4 years ago

0.2.12

4 years ago

0.2.11

4 years ago

0.2.10

4 years ago

0.2.9

5 years ago

0.2.8

5 years ago

0.2.7

5 years ago

0.2.6

5 years ago

0.2.3

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago