1.0.0 • Published 8 years ago

jm-basic-auth-credentials v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

jm-basic-auth-credentials

Get credentials from basic authorization header.

Installation

$ npm install jm-basic-auth-credentials

Example

//http authorization header for 'foo:bar'
const header = 'Basic Zm9vOmJhcg=='

const getCredentials = require('jm-basic-auth-credentials')
const {username, password} = getCredentials(header)

//username is now 'foo', password is 'bar'

License

MIT