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.
$ npm i hapi-tiny-auth --saveconst 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) => {
});