How can you convert HTML, CSS and Javascript to EXE?

All the answers to this question, as far as I can see, are confusing ... can someone give me a detailed way to make EXE applications with HTML?

+3
source share
4 answers

No. In the strict sense, you cannot. HTML was mainly designed to develop and share documents written for the browser (and CSS provides layout information for such a document).

Although, this is no longer the case. There are many possibilities when HTML and CSS are used outside of the browser (for example, Gnome Shell is developed using CSS and Javascript or thinks of a Modern User Interface for Windows 8).

So, if you are considering Windows 8, it is possible to create an application outside the browser; but technically this is not. .exeThis is not an executable file.

Another possibility is to use the WebBrowser Class , which allows you to write .exe, which uses your HTML and CSS.

So, there are ways to embed HTML in an executable file, but you cannot make it executable on your own, as it is a document / markup language, not a programming language and cannot be converted to working code.

+4

, , .

  • HTML, - . " -" . CD/DVD Windows, -. ( ), , .

  • -, , , . ( , ). , , .

  • HTML/CSS, . ; . exe: .

  • , . " " , Javascript . "", .exe: .js. Javascript-. - HTML CSS: Javascript - , , .

, , HTML . , : . . , ? exe- ?

+2

HTML - , XML - , . , MS Windows (*.exe) HTML.

+1

. HTML - , , , , HTML.

HTML, CSS JavaScript . , , ( ).

Visual Studio 2010 WebView, HTML, JS .. : http://blogs.msdn.com/b/wsdevsol/archive/2012/10/18/nine-things-you-need-to-know-about-webview.aspx

, Visual Studio 2013, JavaScript.

JavaScript - Visual Studio 2013. ( , IntelliSense ..), JavaScript Visual IDE. JavaScript Windows Store - Visual Studio.

However, keep in mind that all your JavaScript is compiled into the Common Language Runtime (CLR), which can be read here: http://en.wikipedia.org/wiki/Common_Language_Runtime

0
source

All Articles