@mainframe/transport-create-http

HTTP transport factory used by transport-http-browser and transport-http-node.

Usage no npm install needed!

<script type="module">
  import mainframeTransportCreateHttp from 'https://cdn.skypack.dev/@mainframe/transport-create-http';
</script>

README

transport-create-http

HTTP transport factory used by transport-http-browser and transport-http-node.

Throws HTTPError when the request fails.

Installation

yarn add @mainframe/transport-create-http

Usage

import createTransport from '@mainframe/transport-create-http'

const request = createTransport(window.fetch)('http://localhost')

request({ hello: 'transport' }).then(console.log)

API

createTransport() (default export)

Arguments

  1. fetch: (req: Request) => Response: function implementing the Fetch interfaces.

Returns (data: Object) => Promise<any>

HTTPError class

Arguments

  1. status: number: HTTP status code
  2. message: string: error message

Properties

  • status: number: HTTP status code
  • message: string: error message

License

MIT