Angular Beginnings

Angular Setup

We are going to work help you memorize how to set up an a basic Angular app. You will do this over an over for each Angular project and you need to get this down!

Requirements
  1. Load Angular framework from a CDN
  2. Create an Angular module
  3. Create an Angular controller
  4. Have a model that is tied to a scope object
  5. Have an input box that is tied to that same scope object
  6. When you type in the input box, the label should immediately be updated with the text that is typed (hint: you'll want to use ng-model).