Mobile app version of vmapp.org
Login or Join
Sue5673885

: Is the hybrid solution the best one for developing a web app? I need to build a web app that has to be "universal". By universal I mean that I need it to be available online and offline,

@Sue5673885

Posted in: #Architecture #WebApplications #WebDevelopment

I need to build a web app that has to be "universal". By universal I mean that I need it to be available online and offline, and usable on mobile platform and pc's and mac.

I need to store and retrieve the info and I want the app to be updated when its online.

Since I need to port the info to a SQL database I thought about building an CMS that would build the app for each client using the SQL database. That app would run with a Nosql Db in the background that would return the data to the master (couchdb) and then I would take that info and parse it to store it in the SQL Database ...

I thought using the couchdb engine would be the best solution because I need the data to be available online and offline.

The question now ...


First is it a good idea?
Any other suggestions I could build on?(can be anything)
Is the hybrid solution a good idea?
What offline storage easily replicable I could use for a web app (
easy to install at the client facilities?)

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Sue5673885

1 Comments

Sorted by latest first Latest Oldest Best

 

@Candy875

You can target HTML5 browsers and use local storage to store the data for offline use. These articles give pointers on how to synchronise the local and central storage.

stackoverflow.com/questions/1744522/best-way-to-synchronize-local-html5-db-websql-storage-sqlite-with-a-server-2 https://stackoverflow.com/questions/4106961/html5-local-datastore-and-sync-across-devices

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme