- 
          
 - 
                Notifications
    
You must be signed in to change notification settings  - Fork 44
 
Description
It seems there's only an in-memory filesystem included with wasm-git (totally makes sense) but if I'm not completely mistaken it also looks like this can quite easily be replaced simply by mounting a filesystem at a given path? Digging through the FS object I see this:
Is there any documentation you can point to on how to implement this interface, and is this all that's needed to plug in a different kind of filesystem?
What I'd like to do is actually write to disk, not memory, when my application is running on a local machine (in Electron, hence #2, but I can do this in Node just as well) but when it's running in a browser I obviously would use an in-memory filesystem. I don't want to just dump one big blob, I'd actually like to write proper files that could be used with a regular git client outside of my app as well.
