Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Latest commit

 

History

History
51 lines (32 loc) · 1.71 KB

README.md

File metadata and controls

51 lines (32 loc) · 1.71 KB

hapi-json-api

Hapi plugin for enabling/enforcing JSON-API specification.

Original project transferred from @wraithgar.

Current Version Build Status NSP Status Greenkeeper badge

Getting started

Installing

npm install @gar/hapi-json-api

Example of use

//where server is a hapi server

server.register({
    register: require('@gar/hapi-json-api')
    options: {}
});

Configuration

Pass an optional meta parameter to options to have that included in the meta response namespace for all replies from your server

Features

  • Enforces Accept/Content-type rules defined in spec

  • Rewrites Boom errors to be spec compliant

Note: Objects coming back from your handlers is not validated as of now. It is assumed to be in proper json-api format and simply passed on.

Contributing

Please read CONTRIBUTING for details on our code of conduct, and the process for submitting pull requests.

License

This project is licensed under the MIT License - see the LICENSE file for details.