nwjs-packager
nwjs-packager copied to clipboard
Build your NW.js app and generate archives, packages, setup files and more!
On Windows.: Compiling with "nwjs-packager" result a 504mb directory for a "hellow world" project with only a index.html 1kb file. Also the .exe takes a long time to open. Why?...
For example `nwp --flavor-sdk` or `nwp --flavor-normal`. This way you can use SDK in development but leave it out for production. ```json // package.json { "scripts": { "dev": "nwp -r...
It would be very nifty indeed
Inno Setup 6 is the newest version for starters. Although this may become unneeded when #14 is implemented
For example, you might want to have installer and .zip outputs on win-64, but just a .zip for win-32. Or you might want to have a different installer for win-32...
Squirrel is the installer framework used by Electron to package apps. [Here](https://github.com/Richienb/scratch-builder/blob/022d1d2815475f0db6798a5d4e64ed08182d083c/lib/build-binaries.js) is how I used it for nw.js.
https://github.com/nwjs/nw.js/issues/7213
A core aim for nwjs-packager is to be able to output .deb/.rpm Linux packages and similar for macOS. The [fpm](https://github.com/jordansissel/fpm) tool seems like a good way of generating .deb, .rpm...