giraffekey
giraffekey
This would be useful and probably necessary for further progress
These are good examples of production decentralized file storage solutions Storj: https://storj.io/ Sia: https://sia.tech/ They both split files up into a bunch of different encrypted pieces (we can make encryption...
I need this for an app I'm making and am having trouble with browser IPFS so I may try implementing a fs API in JavaScript built off GUN.
We should try recreating the mutable files API IPFS has: https://github.com/ipfs/js-ipfs/blob/master/docs/core-api/FILES.md
Update: I created a pretty simple fs solution using Sia: https://github.com/GiraffeKey/efs Not sure if creating a fs API based on GUN is really necessary - we would just end up...
I was mainly worried about streaming but perhaps that could be a separate issue - file splitting isn't too bad as long as you don't need the individual pieces to...
With all the creative ideas we've been coming up with for data storage I'm sure we can handle it
Also `gun.back()` should be implemented.
This isn't high on my priority list anymore as the desktop version would personally be more useful to me. If anyone is interested in creating the websockets-wasm plugin you can...
Example of parallel computing in WASM: https://github.com/rustwasm/wasm-bindgen/tree/master/examples/raytrace-parallel I consider shared mutable state to be something necessary for the port to work.