Problemos: Software principles.

Local first software

+2  

Software should be designed to work locally first, without needing a server side component

YAML Idėja

Many new projects are written to be server side - that is run by a web server or written as a native mobile application

This makes it difficult to run the software locally, like a desktop application. You essentially have to self host the application to use the software yourself and lock it down with users if the server is on the internet.

Older software was local first - that is it saved files and the files were used to store the application's data. Traditional office applications are local first.

The problems with collaboration and local first software are solved by CRDTs and synchronization. See the category for distributed data storage.

chronological,



(nesiųsti pranešimų) (nebūtinas) Prašome prisijungti.

Yra susijusi (bet ne visiškai ta pati) programinės įrangos „neprisijungus“ sąvoka. Manau, skirtumas yra programinės įrangos pristatymo režime, nes vietinis pirmas turi būti siunčiamas kaip OS paketai arba šaltinio kodas, o terminas „neprisijungęs“ dažnai naudojamas žiniatinklio programoms, ty svetainės atidarymas (kuris yra šiek tiek oksimoroniškas).

There is a related (but not exactly the same) concept of "offline-first" software. I guess, the difference is in the software shipping mode, in that local-first has to be shipped as OS packages or source code, whereas the term "offline-first" is often used to mean the web-apps, meaning, shipped by opening a website (which is a bit oxymoronic).


Man labai patinka vietinio pirmumo idėja ...

I really like the idea of local-firstness...