Skip to main content

Posts

Showing posts from May, 2015
NodeJs Installation Guide
Develop desktop app using Node-webkit Node.js is built on Chrome V8 JavaScript engine. V8 is one of the fastest JavaScript engine which runs inside of your chrome browser. Node Organisation You can install node-webkit in Linux,Windows and MacOS. Here is direct link to download node-webkit package for your system. You don’t need to install it, just place it somewhere and proceed with tutorial. Windows : Download Node-webkit for Windows (32 bit) (64 bit). Linux : Download Node-webkit for Linux (32 bit) (64 bit). Mac : Download Node-webkit for MacOS (32 bit) Hello Node-webkit Program ! To get you started let’s build sample program which prints “Hello World !” on screen using node-webkit. Hope you have downloaded and extracted the node-webkit files. Package.json { "name" : "nw-demo", "main" : "index.html", "window" : { "toolbar" : true } } You don’t need to install any dependency here. Just save the file and cre...