1.1.0 • Published 8 years ago

hapi-tiny-auth v1.1.0

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

hapi-tiny-auth

Build Status

Just enough authentication to make an API private. This Hapi plugin will allow only one set of configured credentials to access any of the API's endpoints. Must be used with hapi-auth-basic.

Install

$ npm i hapi-tiny-auth --save

Register

const Hapi = require('hapi');

const server = new Hapi.Server();

server.register([
  require('hapi-auth-basic'),
  {
    register: require('hapi-tiny-auth'),
    options: {
      username: 'USERNAME', // required
      password: 'PASSWORD'  // optional
    }
  }
], (err) => {

});