Using local storage in HTML5, I can share it between different users

I plan to use the localstorage html5 ability to write a simple application, I would like to share the database file with several browsers (users on different machines). I'm not too worried about blocking, etc., since the number of users is only 3-5. Can anyone help on how I could achieve this.

+3
source share
1 answer

Impossible as data is stored in each browser database. If your user has switched between Chrome and FF, a different database will be used. However, the data is shared between windows in the browser.

+1

Source: https://habr.com/ru/post/1774676/


All Articles