NW.js playground
Project to learn and experiment with NW.js.
NW.js enables the creation of cross platform desktop applications. Your UI is built with standard html, js, and css technologies. Access to the underlying desktop OS capabilites are provided by giving you access to node.js. You can use the Node.js core modules plus any of the 3rd party NPM modules;
Installing NW.js
Download and unpack nwjs app for your platform from http://nwjs.io
On OSX you’ll end up with
/Applications/nwjs.app
Developing Your App
create index.html
and package.json
files
see nw.js quick-start for details
This app is a minimal example with an added app.js
file for javascript. It’s sets the document.body
to 'Hello There'
.
Running
Create alias in ~/.bash_profile
to ease the use from terminal
# alias to nw
alias nw="/Applications/nwjs.app/Contents/MacOS/nwjs"
Run
cd ~/projects/nwjs-playground
nw .
Packaging as app on OSX
Create
.nw
filecd ~/projects/nwjs-playground zip -r ../${PWD##*/}.nw *
.nw
file will be created along side the project directorymake copy of
nwjs.app
cp -r /Applications/nwjs.app /Applications/myapp.app
Copy
.nw
file into myapp.app bundlecp ../nwjs-playground.nw /Applications/myapp.app/Contents/Resources/app.nw
Twitter • Reddit