Javascript 51
Desktop Application Development With Electron
Develop Desktop Application Using HTML CSS and JavaScript This book is all about desktop application development using Electron framework.It covers all the important concept of Electron framework that will help a web developer to create a desktop application. It also shows how we can use HTML,CSS and JavaScript to build a desktop application.It has also […]
AngularJS Directive Boilerplate Using Gulp
AngularJS We can build reusable directive using AngularJS. For creating a directive and publishing it to NPM require some repetitive task like source directory,distribution directory,build task etc..To resolve this cumbersome work we have to create a boilerplate and publish it to NPM and then reuse it whenever we have to create a new directive. In […]
ReactJS stateful component Demo
ReactJS provide support to maintains states. It means a component can have multiple states during its life cycle. React provide properties and API methods to work with states of a component. In this demo, “We will develop an example which change its state by user interaction/inputs”. The following code creates a ReactJS component which has […]
Electron Desktop Notification Using Node Notifier
Electron framework does not provide cross platform notification API. We can use HTML5 Web Notification API to create notification.But it can only be used in Mac OS and Linux. Electron for Windows build does not support Web Notification.This concludes We need a cross platform notification solution.We can solve this problem using node-notifier NPM module. […]