Angular 4 : Creating Component Automatically In AngularJS

After gaining the knowledge about how components are created in angular.js manually, this blog will help you learn how to create components automatically. If you are unfamiliar with the manual component creation, visit the blog – Creating Registration Form With Custom Component In AngularJS for detailed information. Follow these basic steps in order to create …

Angular 4 : Creating Registration Form With Custom Component In AngularJS

Before starting with the registration form, you should be aware of basic file rendering and server setup in AngularJS. If not then quickly glance over the blog – Creating First App In AngularJS With Basic File Setup & Configuration. This blog will also be helpful for you to learn how to call a custom component …

Creating First App In AngularJS With Basic File Setup & Configuration

Firstly, we need to choose a decent IDE (Integrated Development Environment) in order to write our codes and compile it. There are several good IDEs available on the web but we will be using Microsoft’s Visual Studio Code editor. Steps For Basic File Setup – Open Visual Studio Code and switch to its terminal tab. …

AngularJS $animate : Tutorial With Animation Example

We have already learned that how to apply animation using specified directives of AngularJS. AngularJS also provide the facility to apply animation to custom directives. Now, we are going to learned that how to  apply animation in our own directives. We will do this by using the methods of $animate service of AngularJS. $animate Service $animate …

AngularJS Animation

Along with various important features, AngularJS also provides the functionality of animation. AngularJS provides some inbuilt directives especially created for animation which you can directly use in your application. Or you can use $animate service with the custom directive for animation purpose. In this tutorial, we are covering animation via inbuilt directives. Animation using $animate service …

AngularJS Provider

Provider works in the same way as the service or factory works. It has an additional functionality that could be configured during the module configuration phase. We can configure a provider according to our requirement. We applied this configuration when we want that our configuration must be set, before the application start. The provider usually defined with …

AngularJS – Dependency Injection

Dependency Injection is the pattern of designing software in which one or more services (known as dependencies) can be injected in the component (dependent object). It makes our code more maintainable, testable and usable. There are many components in which dependency can be applied like controllers, directives, filter,  service, factory, provider, value, constant. But some of …

AngularJS Routing : Connect Different Templates In Single Page Application

AngularJS Routing is one of the amazing feature provided by Angular. Routing helps in expanding the scope of view and allow us to use multiple templates within a single page application. In this tutorial, we are going to demonstrate you how to configure and use routing in your single page application. First we will explain …