Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Latest commit

 

History

History
23 lines (18 loc) · 757 Bytes

24 Debugging Angular 2 Apps with Batarangle.md

File metadata and controls

23 lines (18 loc) · 757 Bytes

Debugging Angular 2 Apps with Batarangle

Links

Batarangle

Browser plugin that helps debugging Angular 2 applications. Adds an 'Angular 2' tab in the developer tools.

Allows to visualize the Angular 2 application's component tree. We can click on any component and get all the information about it.

Future plans

  • pushing bootstrap logic into Angular
  • wrapping up tree view / component inspector
  • showing updates: visually show when things get updated
  • snapshots

Under the hood

  • watch the DOM, check for changes
  • when changes are detected, they get the element and invoke an Angular 2 function to get the component
  • currently tied to Google Chrome's Dev Tools API