Cross-platform stand-alone HTML application development

I'm thinking of creating an application like TiddlyWiki in the sense that everything is self-contained in an HTML file, or at least in a bundle where the user does not need to install anything. It works in almost any browser, as well as on mobile phones (Android and iPhone), and in some browsers (for example, Firefox) it is possible to save it to the local file system without a plug-in (although it launches many security warnings, there are other solutions for this). Other browsers use the Java plugin to get around this limitation.

Are there any technologies that make this possible? The HTML5 web storage sounds like it will be almost perfect, except that the data will be bound to the browser.

Any help would be appreciated (even if it just means editing / repeating the question to attract more people).

+4
source share
2 answers

What about the api file: http://caniuse.com/#search=fileapi

+1
source

I just add a corresponding comment with this, but not quite the answer ...

When you say you want to develop an application containing everything ... Then I would like to add Titanium , PhoneGap and others (Corona) ... This software provides a JavaScript base that will work on all mobile phones (in the case of mobile applications) , desktop computers (in the case of desktop applications), etc. But Titanium (as I work on it) works on the SDK of all other languages โ€‹โ€‹for development ...

Now TiddlyWiki, as I understood from the link, is that it creates a web application or something similar that will work on all other mobile devices. But this is NOT always good, as for some applications there should be a NATIVE environment (which is supported by Titanium). Native applications will be much faster than any other developed applications.

0
source

All Articles