Javascript 51
Getting Started with Browserify Part1
The require() method is so popular and used by NodeJS developer to load modules. Browserify provides the feature of using require() method for the client side JavaScript and bundling up of all dependencies together. Browserify provides a way to use the NPM modules (published for NodeJS server side programming) in the client/browser environment.This statement hinting […]
Building a Sample Profile Using Angular Material
In my previous post we have learnt how to configure and use Angular Material library. In this demo, “We will build a sample profile using different UI elements in Angular Material”. For demonstration we have used few free images from StockSnap. The Angular Material library and its dependencies are installed using Bower command.In my previous […]
Angular Material Library Demo
In my previous post we have learnt to install Angular Material library using Bower command. In this demo, “We will configure the Angular Material library and explore few components”. The project structure created by Bower installation of Angular Material library is as follows. In materialDemo.html file we will be calling Angular Material library and the […]
Installing AngularJS Material Library Using Bower
AngularJS Material library provides UI elements based on the Goggle’s Material design guidelines. You can find more details about AngularJS Material library in the following link. https://material.angularjs.org AngularJS Material library can be installed by using bower command bower install angular-material. In this demo, “We will learn to install AngularJS Material Library using Bower”. To demonstrate […]