persistent collections With ImmutableJS Part 1
Immutable JavaScript library is created by Facebook developers. In this demo, “We will learn about Immutable JavaScript library with a Map example”. Immutable data does not change once created.It means a new immutable object is created if any changes are done. You can find more information about Immutable library using following link:- http://facebook.github.io/immutable-js/ Immutable library […]
AngularJS ngTable Example
Using ngTable module we can create a table for displaying data. This ngTable module can be found in this link. To demonstrate the use of ngTable we have created the NgTableDemo project structure. The data.json contains the code for person data.The content of data.json file are as follows:- { "person":[ { "id" : 1, "primary" […]
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 […]