Replies: 1 comment
-
I'm using native-file-system-adapter for this. Take a look at |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am the developer of https://oboku.me/ and I am trying to provide support for large books. Some comics can be up to a GB size and I have two issues currently. Some context first:
Currently, the download crash on devices that obviously don't have enough memory. Loading large books on chrome is also extremely slow due to jszip I would guess.
So I am trying to solve two issues basically.
First is that even doable on a browser ?
Second, I thought of streaming the download directly to the File System API but safari does not support stream and it is the browser which with I have most issue so for the time being it seems indexeddb is more reasonable. I thought about streaming the download and storing chunks in indexeddb but before doing so I wanted to make sure I would be able to consume the chunks with fflate in a way that would work and also not saturate the RAM ?
Well, any insight on how to solve my issue would be appreciated.
(side note: I am looking for a full browser experience, no server involved for streaming allowed)
Beta Was this translation helpful? Give feedback.
All reactions