Post number #1073187, ID: 935c69
|
I made a program and i want it to be in exe, ready install and such? How?
Post number #1073190, ID: 32b46b
|
50k
Post number #1073206, ID: 84f0d4
|
50k
Post number #1073232, ID: 1a28cc
|
Electron
Post number #1073259, ID: 74f55a
|
How about using an actual programming language?
Post number #1073287, ID: e537e3
|
>>1073259 It's a very small program. And it has editors.
Post number #1073288, ID: e537e3
|
>>74f55a actually, what do you mean. can actual programming language casually work in exe or apk or whatever you tell it to?
Post number #1073293, ID: be8d2c
|
It's called a webbrowser.
Post number #1073365, ID: d7f82e
|
Hey there, dangeru.us is yours...
Post number #1073371, ID: 4c161a
|
curl -o app.exe https://dangeru.us/ simple as that
Post number #1073432, ID: 5a6d88
|
>>1073288 HTML was never designed as a language to create executable program code in the first place. It is a (HyperText) Markup Language, no a (HyperText) Program Language. For most programing languages there exist compiler to turn the program code into a binary (unix) or exe (dos/windows) file - even for interpreter/vm based languages.
Also "exe" is not an universal format. You should tell us your target platform(s), e.g. CPU Architecture/Operating System (version).
Post number #1073433, ID: 5a6d88
|
Also is your "Program" really pure HTML (which version) or does it contain Javascript Code?
Post number #1073435, ID: 5a6d88
|
"Electron", as already suggested by some here, is maybe the closest to what you want. In fact it is a tiny (chromium based) webbrowser, that can be configured to run a Webapp, giving the user the immersion of having an actual stand-alone program. But be warned: This kind of solution may bloat your program up regarding disk space, memory usage and cpu usage.
Post number #1073437, ID: 5a6d88
|
If you want to make your program available locally (usable without internetconnection) "electron" will internally run a local webserver (that eventually even supports php - I just mention as you may want to make your project even more absurd) Instead learning how to configure electron (which is massively depended on googles policies) you rather should find a way to implement your program in a more efficient and stable way.
Total number of posts: 14,
last modified on:
Mon Jan 1 00:00:00 1759261601
| I made a program and i want it to be in exe, ready install and such? How?