Sha256: 477ff0955823ae74b19b74b6897b63a94bbcee8432fb719b3864bf1f1919f544
Contents?: true
Size: 439 Bytes
Versions: 17
Compression:
Stored size: 439 Bytes
Contents
# basic-auth Generic basic auth Authorization header field parser for whatever. ## Installation ``` $ npm install basic-auth ``` ## Example Pass a node request or koa Context object to the module exported. If parsing fails `undefined` is returned, otherwise an object with `.name` and `.pass`. ```js var auth = require('basic-auth'); var user = auth(req); // => { name: 'something', pass: 'whatever' } ``` # License MIT
Version data entries
17 entries across 17 versions & 2 rubygems