hapi-tiny-auth

1.1.0 • Public • Published

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) => {

});

Package Sidebar

Install

npm i hapi-tiny-auth

Weekly Downloads

2

Version

1.1.0

License

MIT

Last publish

Collaborators

  • elnaz