I'm working on MVP of a post scheduling web app. I want to store files to be posted on local storage because of the storage costs on the server but I couldn't find any structure to store large files on local with JS.
How can I store image/video files locally on browser with JS?
I tried LocalStorage and FileSystem APIs but they aren't solving my problem. I want to read the file from local at the scheduled time.