Javascript 51
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 […]
Getting Started With Backbone JS Part1
The first thing you need to know about Backbone.js is that it’s friendly. It is not difficult to learn or use, and the time you will spend to learn this serviceable framework will be worth it. You will learn how to use one of the most popular front-end frameworks and how to develop modern web […]
How AngularJS Application Works?
AngularJS This post is all about understanding the working mechanism of an AngularJS application. 2-way data binding is the core of AngularJS which creates the magic that you see in most of its application.we will learn how it works. INTRODUCTION TO ANGULARJS AngularJS is an one of the most popular client side framework and developed […]
Electron Desktop Application Installation
Electron framework provides cross platform desktop application development using JavaScript. In this demo, “We will learn to install electron and setup application development environment”. Electron can be installed as npm package using npm install electron-prebuilt –save-dev command.The following screenshot shows the terminal with electron installation. The project structure contains the index.html,main.js and package.json file and […]