score:2

Accepted answer

electron has already been mentioned by @slaks.

another way to package a javascript app as an executable is using nw.js. docs here.

simply, compress your .js sources (you'll need to write some nw boilerplate, see the docs) into a .zip, and concatenate that with nw.exe:

copy /b nw.exe+your.zip your.exe

then you get your.exe, an executable version of your app.


Related Query

More Query from same tag