Skip to content

mmaruniak/AT-OpenAPI

 
 

Repository files navigation

AT Squad OpenAPI Wrapper

A wrapper around Open API with logging and error handling.

Using this library

Install the library.

yarn add @alphatango/openapi
import { OpenApiWrapper } from '@alphatango/openapi';

const { api, getUserPrincipal, getRequestId, getUserToken } = new OpenApiWrapper(requestLogger);

api.get('/livecheck', () => {
  statusCode: 200;
});
api.any('/{proxy+}', () => {
  statusCode: 404;
});

export const lambdaHandler = api.handler;

Contribution

We value your input as part of direct feedback to us, by filing issues, or preferably by directly contributing improvements:

  1. Fork this repository
  2. Create a branch
  3. Contribute
  4. Pull request

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 100.0%