I plan to use persistant localStorage in one of my projects and i have found out that the size limitation is 5 MB (chrome). I searched other frameworks which implmented the same thing, like Mootools, Dojo, Lawnchair but i couldnt find out what are their size limitations.
Does anyone know what are the size limitation is in these. And what other options are there which i can use if not the one already stated above.
localstorage limits are not tied to the javascript framework, but to the browser you're using. Currently specs are suggesting to limit the storage space to 5MB and this is the space maximum available on modern browser
On older versions of internet explorer (IE<8) userData behaviour (which mimics the localstorage) has a limit of 128kb for page (512kb is the maximum amount for an intranet page)
anyway for a complete list see http://dev-test.nemikor.com/web-storage/support-test/
you can use IndexedDB, but it's not supported by all browser, but it can be unlimited if user accept.
If you store JSON into your localStorage you can save space using a compression tool, like : https://github.com/k-yak/JJLC