Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arfedulov/koa-jsonapi-errors

jsonapi error constructors and error handling middleware for koa
https://github.com/arfedulov/koa-jsonapi-errors

Last synced: 17 days ago
JSON representation

jsonapi error constructors and error handling middleware for koa

Awesome Lists containing this project

README

        

# koa-jsonapi-errors

Provides koa error handling middleware and a set of erro constructors that are used with this middleware.

## Installation

```
yarn add @arfedulov/koa-jsonapi-errors
```

## Usage

```ts
import Koa from 'koa';
import { jsonApiErrors, BadRequest } from '@arfedulov/koa-jsonapi-errors';

const app = new Koa();

app.use(jsonApiErrors);

app.use(async (ctx, next) => {
throw new BadRequest();
});
/*
Produce response body:
{
errors: [{ status: "400", title: "Bad request" }]
}
*/

```