In the application, I use Fabric.js , which allows users to write text, draw SVG, insert images, etc.
I want to know what is the best way to store this data.
Requirements:
The ability to request data (text) that tells me that I should store it in the database (MySQL at the moment)
I have images, and I also target the iPad, so the images matter how they are stored.
SVG and HTML / CSS are also saved.
I also want to perform version control of the content, as Quora does, so that the user can see the changes from the previous version to the current version. This also includes image versioning and SVG.
Iโm wondering how Google Docs do this, as they also store our documents, pictures, etc.
What is the best way to do this?
source share