REST打字稿服务这是一个用于打字稿的轻量级基于注释的扩展。
它可以用于使用装饰器定义API。
目录安装该库仅适用于打字稿。
确保已安装:npminstalltypescript-g要安装typescript-rest:npminstalltypescript-rest--save组态Typescript-rest需要在tsconfig.json文件中使用以下TypeScript编译选项:{"compilerOptions":{"experimentalDecorators":true,"emitDecoratorMetadata":true,"target":"es6"//oranythingnewerlikeesnext}}基本用法import*asexpressfrom"express";import{Server,Path,GET,PathParam}from"typescript-rest";@Path("/h
1