popsicle-prefix

Prefix all Popsicle HTTP requests

Usage no npm install needed!

<script type="module">
  import popsiclePrefix from 'https://cdn.skypack.dev/popsicle-prefix';
</script>

README

Popsicle Prefix

NPM version NPM downloads Build status Test coverage

Prefix all Popsicle HTTP requests.

Installation

npm install popsicle-prefix --save

Usage

import { middleware, toFetch } from "popsicle";
import { Request } from "popsicle/dist/node";
import { auth } from "popsicle-prefix";

const fetch = toFetch([prefix("http://example.com"), middleware], Request);

fetch("/users.json"); //=> Request("http://example.com/users.json")
fetch("http://foo.com/users.json"); //=> Request("http://example.com/http://foo.com/users.json")

License

MIT