fs-monkey icon indicating copy to clipboard operation
fs-monkey copied to clipboard

Monkey-patches for file system related things

Results 21 fs-monkey issues
Sort by recently updated
recently updated
newest added

Last night I was quite tired for lack of sleeping but I had been tinkering for a few hours with `patchFs`, `requireFs`, `memfs`, `unionfs`, `linkfs`. I went through a few...

The following code: ``` unionfs = require('unionfs') ufs = unionfs.ufs fs = require('fs') ufs.use(fs) fsMonkey = require('fs-monkey') patchFs = fsMonkey.patchFs patchFs(ufs) fs.readdirSync('/') ``` gives the error: ``` …/node_modules/unionfs/lib/union.js:346 throw err;...

First of all, thank you for your work on all these fs libraries @streamich. I use them in a lot of my libraries and they have saved me a lot...

I'm using the `patchFS` method in combination with unionfs / memfs, and while I get the expected result when using Sync / callback style methods, the `fs.promises.X` methods seem to...

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more [here](https://redirect.github.com/renovatebot/renovate/discussions/37842). This PR contains the following updates: |...

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more [here](https://redirect.github.com/renovatebot/renovate/discussions/37842). This PR contains the following updates: |...

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more [here](https://redirect.github.com/renovatebot/renovate/discussions/37842). This PR contains the following updates: |...

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more [here](https://redirect.github.com/renovatebot/renovate/discussions/37842). This PR contains the following updates: |...

I'm trying to isolate as much as possible on a Plugin system, on which I wanted to have only the node_modules necessary for that Plugin, along with the Plugin's files,...