0.1.1 • Published 9 years ago

koa-jsonapi-middleware v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

koa-jsonapi-middleware

A Koa.js middleware for adding spec-compliant JSON-API content negotiation

Usage

npm install --save koa-jsonapi-middleware

In your application:

import koa     from 'koa';
import jsonapi from 'koa-jsonapi-middleware';

const app = koa();

// before any middlewarese/handlers that are capable of altering `this.body`
app.use(jsonapi());

...