htpasswd-auth

2.0.1 • Public • Published

htpasswd-auth Circle CI

read/write htpasswd files

Setup

npm install --save htpasswd-auth

Checking if a password is valid

var htpasswd = require('htpasswd-auth');
var file     = fs.readFileSync('./path-to-htpasswd', 'utf-8');
 
htpasswd.authenticate('dickeyxxx', 'pass', file)
.then(function (auth) {
  // auth is true if the password is valid
});

Dependencies (3)

Dev Dependencies (3)

Package Sidebar

Install

npm i htpasswd-auth

Weekly Downloads

7

Version

2.0.1

License

ISC

Unpacked Size

4.77 kB

Total Files

15

Last publish

Collaborators

  • dickeyxxx