Inspecting Routes, Data Tab and Library Info



You can see the list of application's routes defined by the inspector.

Ember.js Inspect Route

When you click on the /# Routes tab, it will show the list of application's routes.

Ember inspector can display only the current active routes. This can be done by checking the Current Route Only checkbox to view the current routes.

Ember.js Inspect Route

Data Tab

Ember inspector uses the Data tab to display the list of model types defined in your application. The Ember inspector will display the related records when you click on the model type.

Ember.js Data Tab

Inspecting Records

You can inspect the records of each model type by clicking on the record which will eventually display all attributes.

Ember.js Data Tab

Library Info

You can view the list of libraries used in the application by clicking on the Info tab −

Ember.js Info

The Info tab displays the libraries along with the version as shown in the above image.

emberjs_ember_inspector.htm
Advertisements