1.0.0 • Published 1 month ago

@npmteanew/mollitia-dignissimos-mollitia-deserunt v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

@npmteanew/mollitia-dignissimos-mollitia-deserunt

build status npm version

A protocol handler wrapper for fetch.

Usage

@npmteanew/mollitia-dignissimos-mollitia-deserunt doesn't contain any fetch implementations. A map of protocol to implementation must be given to the constructor. This example shows how to create a fetch for file, http and https URLs:

import fileFetch from 'file-fetch'
import httpFetch from 'nodeify-fetch'
import protoFetch from '@npmteanew/mollitia-dignissimos-mollitia-deserunt'

const fetch = protoFetch({
  [null]: fileFetch,
  file: fileFetch,
  http: httpFetch,
  https: httpFetch
})

const res = await fetch(`file://${process.cwd()}/package.json`)