|
|
|
|
|
by madacol
722 days ago
|
|
I think you are missing the point. You can implement local-first with the merging strategy of last-write-wins, which is equivalent as any cloud app where the server is the source of truth. But now you automatically get all the other benefits of local-first: - you can use it offline and expect changes to merge when coming back online. With the caveat that changes may be lost, but it's at least possible to have pending changes, you don't even have that option on cloud apps - easier to develop, no more developing custom API backends - multi-player |
|