Angular Final Project So here it is. The big sha-bang. You are going to build a full-stack final project. You will pick your own theme. Here is how you should spend your time
Exercise PokeProfile Using Bootstrap, Angular, $http, and a custom AngularJS Service create a website that looks similar to this: A user will enter the number of a Pokemon and the screen will
Exercise Mighty Clicker You are the mighty clicker! And you are going to build a website that allows you to....click things. Requirements: Have two buttons on the screen, one red and one
Exercise React Name Badge Using React create a website that looks/works like this: Requirements: The user should be able to enter their information in the badge fields. Upon submit, the badge fields should
Exercise Angular ng-model Create a simple Angular website. It should have 3 ng-model input elements and 3 two-way data-bound elements using the {{ nameOfVariable }} syntax. ("2-way data binding" is where the HTML
Exercise Tech Wish List My Tech Wishlist You are going to build a website that displays your technology wish list. You will have two pages, one that shows your list of desired computer/phone
Exercise Final Project Overview Overview Your final project is a portfolio project that will help you obtain your first job as a programmer! Your project will include: A robust front-end using Angular and Bootstrap A back-end server with an API A database to persist the data Front End
Angular Angular Views and Routing Often, a website's functionality cannot be limited to a single page. For example, when going through the checkout process on an e-commerce site, you may go through many different views
Angular Angular Directives Have you ever been jealous of Angular's ability to create new names for HTML tags and attributes? Directives like ng-repeat and ng-model make Angular incredibly useful. As it turns out,
Angular $http in Angular $http is an Angular service that make HTTP requests easy and convenient. $http is a wrapper for the XMLHttpRequest and JSONP browser functionality. It is quite similar to jQuery's ajax
Week 7 Angular Service Basics Services Angular services are singletons. They can be used module or application wide. Services are where you should store data that you don't want to lose between screens and different controllers. We are going to cover basic services. There is also a provider service,
Week 7 Exercise - Project Setup Refresher 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 Build the HTML from scratch Load
Week 7 Ugly Things You are going to build an React app that allows a user to post things that they think are ugly. The data of ugly things should be managed by React