0.0.9 • Published 2 years ago

nub-auth v0.0.9

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

nub-auth

npm version npm David TypeScript compatible MIT Licence

a very simple, minimalistic basic authentication tool, that will mostly serve as a middleware.

How to Install and Installation information

This is a Node.js module available through the npm registry. Installation is done using the npm install command:

type below command in your terminal

npm install nub-auth

How to use it

The module interface exposes just a single function that expects a single argument

var express = require('express');
var nubAuth = require('nub-auth');
app = express();

app.use(['/v1'], nubAuth({
    challenge: true,
    users: { 'admins': 'admin', 'users': 'user', 'guest': 'guested' }
}));
app.get('/', function(req, res) {
    res.send('Hello World!');
});

app.get('/api', (req, res) => {
    res.send('Hello World welcome to API endpoints free !');
});

app.get("/v1", (req, res) => {
  res.send("Hello World welcome to API endpoints closed !");
});

app.listen(3000, function() {
    console.log('Example app listening on port 3000!');
});

argument users

You should pass an objects with users and password as key value pairs

argument chanllenge

By defaults the tools does not force the browser to display a basic chanllenge to the user, set this to true to force the browser to display a chanllenge. NB browsers like chromium edge will not display a chanellege, you have to set this on your browser settings.

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago