According to this answer, I want to use an offline first db inside my electron app. I nedd that the users are not able to directly modify the database, but they can only read data using the UI. The data needs to be synced with a master remote client app that will add and modify data. Can anyone suggest me a good database library to do this?I have a pusher account and an heroku one, that can be used to pass the data between the clients, but first I need a way to store them into the app
Asked
Active
Viewed 771 times
0
-
To clarify: You want the user to enter data offline, and when the user gets access to internet, it should sync with a database? You might want to look at ORM systems for Node.js, like https://typeorm.io/#/ or https://sequelize.org/ – Melvin Witte Mar 24 '20 at 03:21
-
I need to save the data offline and at the same time, have the possibility to sync them with a central db that will be stored from a main desktop app – guggio Mar 24 '20 at 04:06