How to compile an HTML file to run as an application

1

I'm running Ubuntu 14.04 LTS and I'm wondering if its possible to turn an HTML, CSS, and JavaScript file into an executable application that doesn't run in the browser. I'll also accept methods for windows, as I've installed the WINE compatibility package.

cheesits456

Posted 2016-12-05T20:27:00.973

Reputation: 480

Wine isn't perfect; in fact, it's far from it. I don't think you'll get the results you expect by using wine. – MD XF – 2016-12-05T20:42:56.890

Yes, by writing your own browser ... – DavidPostill – 2016-12-05T21:39:18.373

Hi Christian - what you're looking for is to create HTML applications (*.hta) so head over to Microsoft to get started > https://msdn.microsoft.com/en-us/library/ms536496(v=vs.85).aspx

– Jim Nielsen – 2016-12-05T23:16:56.527

Answers

3

Check out Electron. I personally don't use it, but it sounds right up your alley.

https://electronjs.org/

As you mention you are open to Windows options, check out HTA (HTML applications) though this is now considered "legacy" and it may not work forever, but isn't "compiled" as it would be with other solutions.

ttaylor1218

Posted 2016-12-05T20:27:00.973

Reputation: 166