A Wing library for working with TSOA - An OpenAPI-compliant Web APIs using TypeScript.
npm i @winglibs/tsoa
// main.w
bring tsoa;
let service = new tsoa.Service(
controllerPathGlobs: ["./src/*Controller.ts"],
outputDirectory: "../build",
routesDir: "../build"
);
It is also possible to use Wing resources from the TS code
let bucket = new cloud.Bucket();
service.lift(bucket, id: "bucket", allow: ["put"]);
// someController.ts ...
import { lifted } from "@winglibs/tsoa/clients.js";
@Get("{userId}")
public async getUser(
@Path() userId: number,
@Request() request: Req,
@Query() name?: string,
): Promise<User> {
let bucket = lifted("bucket");
await bucket.put(userId.toString(), name ?? "not-a-name");
return {
id :userId,
name: name ?? "not-a-name",
status: "Happy",
email:"email",
phoneNumbers: ["a"]
}
}
- Support
sim
platform - Add Console support for http client (depends on winglang/wing#6131)
- Support
tf-aws
platform using Amazon Api Gateway - Support
gcp
platform using GCP Api Gateway
This library is licensed under the MIT License.