Patch Nodejs fetch implementation to allow fetching file:// urls
npm install fetch-file-monkeypatchPatch node's fetch implementation to handle the file:// schema.
`js
import "fetch-file-monkeypatch"
const response = await fetch("./README.md");
console.log(await response.text());
``