Published 2018-07-16 15:32 Tagged on nodejs electron Creating Desktop App With Electron - Assuming we have all set with nodejs and npm for creating a simple desktop project with electron. Now what we need, just to initiate a new project with the following command. ``` $ npm init ``` - Install electron with npm. All binary dependencies of electron will be preserved...
Published 2018-07-16 15:02 Tagged on hello-world nodejs Hello World Project with NodeJS ## Install Node.JS - Download node.js from nodejs.org. - Unpack anywhere you prefer. - Export path variable. - Open .bashrc file to export path variable (I prefer this way! :P) ``` $ gedit .bashrc ``` - Add the following lines to the .bashrc file. ``` export...