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.
Imagine if we have something similar `LocalStorage` but instead of storing it on Local Storage we would store the filesystem inside the DOM. This would make it possible for a...
Can session storage be added to browserfs?
Hi, This repo seems to be inactive. Could you share some info just to help set the expectation? - What is the current project status, e.g.: archive, or fix-only? -...
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/ . I got the issue above when...
Hey are there any plans to support the new experimental Filesystem API? https://github.com/WICG/native-file-system
This is my attempt to use the [File System Access API](https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API) as a backend for BrowserFS. I'm open to any comments/suggestions. I avoided `async`/`await` as the build command started complaining...
``` fs.mkdir('/home', 1, function () { console.log('directory created'); }); fs.mkdir('/src', 1, function () { console.log('src created'); }); fs.mkdir('./components', 1, function () { console.log('src created'); }); fs.mkdir('/components/test', function () { //...
I've been reading the docs and I'm under the impression that the core filesystems have symlinks? I'm currently getting `ENOTSUP` not supported errors, so curious if there are any examples...
Hi, I have the following layout for running Pygame games apk directly on web ``` // VM is emscripten Module, modularized or not VM.APK = "org.pygame.asteroids" var BFS = new...
Proxy FS
or Middleware FS. or Hook FS. Or Instrument FS? I can be indecisive. Fixes #196 The goal is a backend that will proxy (wrap) any existing backend, while letting you...