diachedelic / capacitor-blob-writer

Capacitor plugin to write binary data to the filesystem
MIT License
132 stars 17 forks source link

Avoid OOM errors when falling back to Filesystem.writeFile #16

Closed diachedelic closed 4 years ago

diachedelic commented 4 years ago

Data should be passed across the bridge incrementally (appended bit-by-bit) to increase the stability of the plugin in fallback mode.

See https://gist.github.com/diachedelic/9aa3790e045e37327bffdcfaadd29253 for a ready-made solution.