jm-basic-auth-credentials

Get credentials from basic auth header

Usage no npm install needed!

<script type="module">
  import jmBasicAuthCredentials from 'https://cdn.skypack.dev/jm-basic-auth-credentials';
</script>

README

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