top | item 41745933

(no title)

ochiba | 1 year ago

Local-first generally refers to apps that work with a local client database which syncs with a server database in the background. Reads and writes go to the local database first. This results in very low latency and not being dependent on the network for working with data. The term is often applied loosely and architectures and implementations differ quite a bit.

This community has been central to the idea of local-first: https://localfirstweb.dev/

The term local-first was coined by Martin Kleppmann et al in this essay: https://www.inkandswitch.com/local-first/

discuss

order

profsummergig|1 year ago

Thank you.

In the context of Web Apps, I suppose this means that data is first stored to some sort of in-browser storage and synced to remote in the background.