mmaruniak / AT-OpenAPI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:MIT License


Languages

Language:TypeScript 100.0%