Tutorials 4
JSPM Installation and Initialization
JSPM is next generation of package manager for Browser. JSPM is developed around SystemJS a universal module loader. SystemJS is capable of loading ESM,CommonJS,AMD,global and register formats. JSPM can be installed globally using npm install jspm –g command.The following screenshot shows the installation of JSPM. JSPM ca be installed locally and it is recommended.It ensure […]
Node Express Application With WebStorm
WebStorm is an JavaScript IDE from Jetbrain. Webstorm provide list of project template to create new project. In this demo, “We will learn to create a web application project with NodeJS,Express,Handlebar and Compass”. The following screen shot shows the window for creating a new Node project with different options like choosing a CSS framework and templating framework. […]
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" […]