BrowserFS
BrowserFS copied to clipboard
BrowserFS is an in-browser filesystem that emulates the Node JS filesystem API and supports storing and retrieving files from various backends.
i not find a htmlfs example for `HTML5FS` i according to my understanding coding such as ```ts BrowserFS.configure( { fs: 'HTML5FS', }, function(e: Error) { if (e) { // An...
There's a new (albeit experimental) promise API. I just wanted to create an issue and discuss if it's worth implementing in BrowserFS. Any thoughts? [https://nodejs.org/api/fs.html#fs_fs_promises_api](https://nodejs.org/api/fs.html#fs_fs_promises_api) Thanks for this great module...
When using AsyncMirror and Dropbox, and there are subfolders with files, it fails during configure. In the error, it seems to try and fetch but uses the subfolder path twice...
We are currently using BrowserFS for our project and so far it works well. Great work! One thing that we have encountered though is that we use it in a...
Hi Everyone, Just discovered BrowserFS and I wonder if that can meet my need. I'm trying to download a multipart file from 2 different sources at the same time. Can...
Hi, as per documentation I've been using version 0.10.3 of the dropbox library to create the client, but then a simple fs.writefile fails and the result of the XHR query...
 I thought to replace everywhere with just `join`, but the tests don't work on my computer, I can't check 
It would be great if in the "writeFile" HTML5FS function they added the progress function to create a progress bar, something like this: ```javascript var progress = function progress(writer) {...
changed implements to extends in node_fs_stats.ts
Hi Guys, I am new to BrowserFS, I have a question, it is probably a stupid one. Some context, I am building a previewer which will download a zip bundle...