@borderless/parse-authorization

Parse the HTTP authorization header

Usage no npm install needed!

<script type="module">
  import borderlessParseAuthorization from 'https://cdn.skypack.dev/@borderless/parse-authorization';
</script>

README

Parse Authorization

NPM version NPM downloads Build status Test coverage

Parse the HTTP authorization header.

Installation

npm install @borderless/parse-authorization --save

Usage

import { basic, bearer } from "@borderless/parse-authorization";

expect(bearer("Bearer 123")).toEqual("123");
expect(basic("Basic dGVzdDoxMjPCow==")).toEqual(["test", "123£"]);

TypeScript

This project is written using TypeScript and publishes the definitions directly to NPM.

License

MIT