Markus
Results
2
issues of
Markus
I was searching for a solution to use a custom http.Agent for every request. In early 3.x releases, it was possible to do something like (ref: #1130): ```javascript const http...
I want to fake the `fs` package using [`memfs`](https://github.com/streamich/memfs). My production code uses [`fs-extra`](https://github.com/jprichardson/node-fs-extra). The require-stack looks like: app.js (ESM) -> fs-extra (CJS) -> graceful-fs (CJS) -> fs (Built-In) ###...