by treewalkerlabs | Aug 6, 2018 | Electron, ES6, Javascript
What is Electron ? Electron is framework to develop the native desktop application for all major platforms (windows, Mac and Linux) using HTML , CSS and Javascript. How to Install Electron? To install Electron , we need to install nodejs and npm . To check if NodeJs...by treewalkerlabs | Jul 31, 2018 | Angular, Angular2, ES6, Javascript
In a angular2 project we were supposed to integrate the bootstrap modal pop up. This will open the pop up on button click. To integrate the pop up , we have installed the ngx-bootstrap.ngx-bootstrap contains all core (and not only) Bootstrap components powered by...by treewalkerlabs | Feb 10, 2018 | ECMAScript, ES6, Javascript
In ECMAScript 2015 , also known as ES6 , many new features were introduced. One of the feature which get introduced was “Arrow Functions”. /********* Traditional way *************/ var func1 = function old(x,y) { return x+y; } /************* New way...