App Lifecycle Updated November 16, 2015 Angular apps go through a multi-stage bootstrap and lifecycle process, and we can respond to various events as our app starts, runs, and creates/destroys components. Bootstrap Angular 2 apps (currently) need to be bootstrapped using the root component for the app. In your main JS file for our app, we put this: import { Component , bootstrap } from 'angular2/angular2' ; // Annotation section @ Component ({ selector : 'my-app' , template : '<h1>Hello {{ nam...