We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using https://github.com/rogerwang/node-webkit.
nw
src
assets
index.html
//
http://
package.json
Folder structure:
. ├── build │ ├── app │ └── nw.pak ├── make ├── nw │ ├── credits.html │ ├── libffmpegsumo.so │ ├── nw │ ├── nw.pak │ └── nwsnapshot └── src ├── assets ├── index.html └── package.json
src/package.json:
{ "name": "codemagic", "main": "index.html", "node-remote": "*", "window": { "title": "codemagic", "toolbar": false, "frame": true, "resizable": true } }
build script:
cd ~/repos/codemagic-desktop && \ cd src && \ zip -r ../build/app.nw * && \ cd .. cat ./nw/nw build/app.nw > build/app && \ chmod +x build/app && \ cp nw/nw.pak build/ && \ rm build/app.nw
The text was updated successfully, but these errors were encountered:
varemenos
No branches or pull requests
Using https://github.com/rogerwang/node-webkit.
nw
directory.src
(assets
dir,index.html
)//
fromindex.html
withhttp://
ones.package.json
file insidesrc
Folder structure:
src/package.json:
build script:
The text was updated successfully, but these errors were encountered: