arthurmco/satsuki

How do we store the image data

Opened this issue · 0 comments

How to store the image list and data?

We have two options:

  • locally, via LocalStorage.
    PROS: Easier, no infrastructure required.
    CONS: Can be confusing. This is a web app, after all, and the user might expect this to be online.

  • remotely, in a server.
    PROS: No user confusion: this is a web app and behaves like one, the content is online
    CONS: More work, need to have a server running, need to have infrastructure.

What do you think?