browserify-persist-fs icon indicating copy to clipboard operation
browserify-persist-fs copied to clipboard

Efficient & stable persistent filesystem cache for browserify

Results 3 browserify-persist-fs issues
Sort by recently updated
recently updated
newest added

Currently `browserify-persist-fs` uses the regular node.js [fs API](https://nodejs.org/api/fs.html) to write down the cache, however it might be cool to be able to replace the fs implementation with [`random-access-memory`](https://www.npmjs.com/package/random-access-memory), [`random-access-idb`](https://www.npmjs.com/package/random-access-idb) or...

enhancement
help wanted

#3 This uses the path of the file in addition to the content of the file to ensure that each input file gets cached at a unique location.

If two different files have exactly the same content, they will both get cached to the same cache file. This can happen most frequently when multiple packages require different versions...