EmberJS – Application Concerns

applications

The Ember applications can be extended by using the Ember.Application class which declares and configures the objects that are helpful in building your application.

Application creates the Ember.ApplicationInstance class while running which is used for managing its aspects and it acts as owner for instantiated objects. In short, the Ember.Application class defines the application and the Ember.ApplicationInstance class manages its state.

The following table lists down more details about models −

S.No.Model Ways & Description
1Dependency Injection
It is a process of supplying dependencies of one object to another and used by an Ember application to declare and instantiates the objects and dependencies classes between them.
2Initializers
Initializers are used to configure an application as it boots.
3Services
Service is an Ember object which can be made available in the different parts of the application.
4The Run Loop
It is a region where most of the application’s internal code takes place.

Next Topic:-Click Here

This Post Has 2 Comments

Leave a Reply