+ 5
How to transform file html to exe?
No comment...
5 Respostas
+ 4
Use electron.js
Here the quick start to build a web page exe
https://electronjs.org/docs/tutorial/first-app#installing-electron
+ 4
@Calvin
Isn't electron.js is for JS only?
+ 3
Sarthak Pokharel electron runs under node.js which generate exe that could output html display.
+ 2
https://www.htmlexe.com/Home
You should check this
+ 1
Why not write a portable web server somewhere such as python and use it's http.server library to serve static webpages to localhost. You can then open this using webbrowser.open('localhost')