Little comparative test of Efficient JS based saving solutions

Hey! I made a little project with different ways of saving huge data with the smallest lag possible for comparing them. Most of them are through JS.

Here is the link to the project!

1 Like

Good idea but a question, if I use this for save or auto save, how I can read the stored data?

It depends on your saving method. Here I show saving as it is difficult to seamlessly save big amounts of data, but loading doesn’t need to be seamless. Basically you just need to do the saving steps backwards. If you got the data from variables, serialized then compressed before saving in localStorage (last of my examples) then you would need to get the data from local storage, decompress it, deserialize it and put the values back in the variables.