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 […]
W3C Web Component Specifications Terminology
The meaning of life for any object is its significance, origin, purpose and ultimate fate and it pose a central question in philosophy, religion and even in web technology. In other words every element in this world has its own significance, origin, purpose and destiny. To acquire the complete knowledge of any element we need […]
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. […]
Implementing HTML5 Desktop Notification
HTML5 provides desktop notification API for use by the developer to generate notification. In this demo, “We will learn to create a desktop notification using HTML5 API”. A desktop notification object is created using Notification() class with new keyword. In this demo we have created a button for subscribing notification.When user click on the button […]