The best database for my ion project

I am looking for the best database for my ion project. I want the user to store a local database with the ability to synchronize this information with a remote database as a payment option. Their data will be from any device by logging in to the user account. I looked at Firebase Couchdb and Parse, but I don't know what I should go with. I must keep in mind the scaling of my application. What are the best options?

+6
source share
2 answers

LocalStorage is a great option if there isn’t much data stored locally. If you need a more flexible and larger database, you can try using IndexedDB or SQLite Plugin for Cordova (Ionic is built on top of Cordoba), all of these parameters are intended for the client.

But for the server, I used FireBase for one of my projects, and I know that it works like a charm, if you are familiar with Polymer / Web Components, all you need to do to FireBase is to add only one html line, and everything else customized for you.

References:
Cordoba-LocalStorage Docs
SQLite Plugin Documents

+5
source

You can use PouchDB noSQL javascript couchDB clone. It can sync with a remote couchDB database and is easy to use in a local environment.

+2
source

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


All Articles