I am working on a content management project where from a tool we generate html/js/css and image files. The data we store in JSON format.
Now, I want to play the contents using browser without any server, i checked some threads and it suggests that it may be possible using file:// protocol, I want to check if there is any limitation if I am not using any server. Or it is not possible to omit http server..
The other thing is that, I can't use concept of local storage because my data size is huge and in HTML5 the max size supported is 10 MB my requirement is approx 25 MB.
Please suggest.
Thanks.