AngularJSFront End DevelopmentTechnology
In this blog we are going to discuss in summary, difference between the two most popular JS (library/framework) i.e Angular 2 and React JS On the very first note, React JS is just a library and Angular 2 is a whole framework (which is still undergoing changes). But we can have a comparison for both. 1. Component: […]
Automation of testing frameworks helps you improve the quality, speed, and accuracy of the testing processes. The strategy to adopt test automation should clearly define when to opt for automation, its scope and selection of the right kind of tools for execution. AngularJS framework is rapidly gaining momentum as it can quickly launch applications by […]
AngularJSFront End Development
Angular directives are very useful in any AngularJS application in order to make code simple and easily handled by a UI Developer. As an angular developer we all use directives frequently but most of us are not aware of the execution cycle of directives that how they work internally. Directives have several inbuilt functions by […]
AngularJSFront End Development
Angular 2 leverages the power of web components. If you are familiar with Angular 1, you know the term directives. Actually, directives are still here in Angular 2. Components are a combination of Directives, controllers, and scope of Angular 1. Components Angular 2 app has at least one root component. Components are the basic building […]
AngularJSFront End Development
In this article, we are going to discuss about how different components can share data using services. To understand services properly, I have developed a simple Angular 2 app in which components are sharing data with each other. About Angular 2.0 Angular 2.0 is a new framework that helps in developing Single page JavaScript applications […]
AngularJSFront End DevelopmentTechnology
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 custom reusable HTML elements(components). It uses standard […]
AngularJSFront End DevelopmentJava/JVM
What if we want to build our new app with technology like Spring Boot exhibiting REST APIs with an AngularJS front end? This basically involves 2 steps: Setup the backend app using Spring Boot Setup the frontend app using AngularJS Setting up these 2 separate environments have their own quirks. Beside of setting up the framework […]
AngularJSFront End DevelopmentTechnology
In AngularJs ‘directive’ plays an important role. AngularJs custom directive has many options like replace, scope, transclude etc. Here we will discuss ‘scope’ property. The scope can have 2 types of value: 1.Boolean 2.Object 1. Boolean : When scope’s value is false:- It defaults value. It creates a new scope but just similar to its […]
AngularJSFront End DevelopmentTechnology
In an Angular application, when we use a controller as syntax we generally encounter isolated scope binding issues, controller’s scope is bound to ‘this’ reference. But how does it work while building directive with an isolated scope? We can create an isolated scope by adding an object to our directive definition that explains how every […]