fetch-file-monkeypatch
v0.1.1
Published
Patch Nodejs fetch implementation to allow fetching file:// urls
Readme
fetch-file-monkeypatch
Patch node's fetch implementation to handle the `file://`` schema.
Usage
import "fetch-file-monkeypatch"
const response = await fetch("./README.md");
console.log(await response.text());