Agile, AngularJS

Building Intuitive Frontend Interfaces with AngularJS – An Overview!

A successful business requires clean, attractive and intuitive consumer facing the web and mobile properties. A good front-end doesn't just help to create a recall but also drive engagement and generate more business. Engineering a product that is both attractive with a high performance is challenging and requires expertise that...

by Poulomi Nag
Tag: AngularJS
25-Jul-2017

AngularJS, Experience Design

Optimization of AngularJS Single-Page Applications for Web Crawlers

I am assuming that you’ve seen websites developed on AngularJS. If not, here are a few sites using AngularJS you would be familiar with: Youtube Netflix Weather IStockPhoto AngularJS is taking over the robust development around the world. There’s a good reason for that React-style framework that makes better developer...

by Ankit Gupta
Tag: AngularJS
06-Jun-2017

AngularJS, Automation Testing

Protractor with Jenkins and Headless Chrome (Xvfb) Setup

"Protractor is an end-to-end test framework for AngularJS applications. Protractor is to run one or multiple tests against your application running in a real browser, interacting with it as a user would." It is easier to check on GUI based system because it launches a browser automatically during the test. But what about non-GUI?...

by Mohit Kumar
Tag: AngularJS
28-Sep-2016

Technology

FullStack 2016,London : Day 3

Second day of FullStack, 2016 London was full of knowledge, great workshops and more amazing people. It felt so good to meet people who have developed some awesome products that we have been using since long and provide an experience to our customers. I got a chance to talk with Heroku and twillio and they explained their future vision to...

by Komal Jain
Tag: AngularJS
03-Aug-2016

Grails, Technology

University Day @ GR8Conf EU 2016

The day one at GR8Conf EU June 2016 Copenhagen, Denmark which is university day was pretty awesome with lots of hands-on  exercises or labs in each session. Also, we got very cool mugs following are the pics: The first day of the GR8Conf went beyond our expectations. The atmosphere, the sessions and the speakers really made the...

by Puneet Behl
Tag: AngularJS
02-Jun-2016

AngularJS, Front End Development

Comparison between Angular and Polymer

Angular :-  Angular is a robust application level js framework based on MVC pattern, facilitate you to extend HTML's syntax to express application's components clearly. Angular's bi-directional data binding and dependency injection reduce code complexity and development time. Polymer :- Polymer is a lightweight js library used to build...

by Anil Joshi
Tag: AngularJS
06-Apr-2016

AngularJS, Front End Development

Angular + SEO

There's a phase in every project when development reaches its completion and next step is to make it search engine friendly. When I had to do this task in my project, at that time I was a little bit confident that this is a very simple task and we just need to set meta tags and some other html tags so that google can crawl easily. But...

by Rubi Saini
Tag: AngularJS
05-Oct-2015

AngularJS, Grails

Testing promises with Jasmine

We have been using Jasmine to test our angular code. Recently I came across a piece of code in Javascript which included a REST API call and returned a promise. The promise then had a success callback and all the rest of the play. So in this blog, I have tried to illustrate how to test a promise. Here I have a function which returns a...

by Komal Jain
Tag: AngularJS
03-Aug-2015

AngularJS, Front End Development

Manually Bootstrapping an AngularJS Application

We always need some mechanism to control our front-end application at the time when we bootstrap it. Getting some customization done before kicking in the angular on the front end, can be a desired use case for some of the Angular Applications. It is mainly needed when we have to redirect to an Angular application from some other social...

by Vibhor Kukreja
Tag: AngularJS
02-Jul-2015

AngularJS, Front End Development

Lets know more about angular module

Modularizing your application is a good practice because it makes the components reusable, configurable and testable. As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words,  angular.module is a container for other units of your...

by Sandeep Kumar
Tag: AngularJS
02-Jul-2015

AngularJS, Front End Development

Immediate and non-immediate model updates in AngularJS

In AngularJS, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using "debounce" object in "ng-model-options" directive, which is known as "non-immediate model updates". Immediate Model updates [html] <div...

by Dhanendra Kumar
Tag: AngularJS
26-Jun-2015

AngularJS, Front End Development

Dependency Annotation in AngularJS

When a function of service or controller invoked via the injector then we have to annotate these functions so that the injector knows what service to inject into the function. In Angular, there are three ways of annotating code with service name - Inline Array Annotation $inject Property Annotation Implicit Annotation ...

by Dhanendra Kumar
Tag: AngularJS
15-Jun-2015