Difference between revisions of "Mean Stack"

From CSE330 Wiki
Jump to navigationJump to search
Line 28: Line 28:
  
 
== Group Project ==
 
== Group Project ==
* Make an e-commerce site using the MEAN stack.
+
* Extended the AngularJS tutorial with additional features.
 +
 
 +
In the group portion of this module, you will extended the AngularJS tutorial with two additional features.  The first is a side-by-side comparison page displaying two products.  In the second, you will provide four additional sorting methods for displaying devices on the main product page. 
 +
 
 +
In the side-by-side comparison page, a user will be able to select two devices and view all of their features in a table.  This table will consist of three columns.  The first column simply lists all of the features of either device (battery, camera, connectivity, hardware, etc ) .  The second and third columns will display the information associated with that category for a particular pair of devices, allowing a user to easily compare the same feature across different devices.
 +
 
 +
The second feature is simply allowing users to sort the devices on additional metrics (in addition to Alphabetical and Newest).  Select four different attributes that you want to include to the drop down list on the main page. For example, I may want to sort by by weight or size of battery. 
 +
 
 +
For each feature, create a separate Git branch.  Name the first branch SideBySide and the second branch AdditionalSorting.  After you complete a feature, merge the branch back to the Master Git repo.
 +
 
 +
 
 +
 
 +
 
 +
<!-- * Make an e-commerce site using the MEAN stack.
  
  
Line 36: Line 49:
 
You may use phone models provided by the Angular Phone Catalog app as your products. Review the MongoDB section on how to import JSON data into MongoDB.
 
You may use phone models provided by the Angular Phone Catalog app as your products. Review the MongoDB section on how to import JSON data into MongoDB.
  
<!-- ==== Tips on Installing MEAN ====
+
==== Tips on Installing MEAN ====
  
 
  Review the "Getting MEAN" section to understand the file system so you know how components work with each other.
 
  Review the "Getting MEAN" section to understand the file system so you know how components work with each other.

Revision as of 13:35, 12 November 2014


This module introduces MEAN, a fullstack web framework that uses MongoDB, Express, AngularJS and Node.js.
You have already learned (some things) about Node.js. In this module, you will be introduced to other three new technologies. Don’t frown yet, the goal of this module is to expose you to the concept of web frameworks and prepare you for the creative project. You are not required to be an expert in all of these technologies, however, it’s important to understand the basics of each and how they work together. Follow along the tutorials and complete exercises to learn how things work, and you will be ready to create your own web applications using the MEAN stack very soon!


Reading

The following articles on the online class wiki textbook contain information that will help you complete the assignment.

Individual Assignments

Tutorials

Make sure you go through tutorials for both MongoDB and AngularJS, and understand how Express works.

Install MEAN

The individual and group assignments for this module only require AngularJS. We provide installation instructions for the entire MEAN stack using MEAN.IO as a reference. You do not need to install the MEAN stack for this module (but it is recommended to really understand all of pieces involved).

To install MEAN on your machine, initialize an app and type grunt in your terminal to start the server (make sure your mongoDB server is connected and running). Open up the app in your browser (localhost:3000), and understand what the default app does.

Group Project

  • Extended the AngularJS tutorial with additional features.

In the group portion of this module, you will extended the AngularJS tutorial with two additional features. The first is a side-by-side comparison page displaying two products. In the second, you will provide four additional sorting methods for displaying devices on the main product page.

In the side-by-side comparison page, a user will be able to select two devices and view all of their features in a table. This table will consist of three columns. The first column simply lists all of the features of either device (battery, camera, connectivity, hardware, etc ) . The second and third columns will display the information associated with that category for a particular pair of devices, allowing a user to easily compare the same feature across different devices.

The second feature is simply allowing users to sort the devices on additional metrics (in addition to Alphabetical and Newest). Select four different attributes that you want to include to the drop down list on the main page. For example, I may want to sort by by weight or size of battery.

For each feature, create a separate Git branch. Name the first branch SideBySide and the second branch AdditionalSorting. After you complete a feature, merge the branch back to the Master Git repo.



Grading

We will be grading the following aspects of your work. There are 100 points total.

  1. Working E-commerce Site (75 points)
    • MEAN installed and set up correctly (10 points).
    • Models set up correctly (15 points).
      including products, orders, and adding payment and shipping address to the user model, you don't have to use phones from the Angular tutorial but you are responsible for populating your products table
    • Can display a list of all products, can search, can view details (15 points).
    • Can add to cart, view cart, cart sustains (data can be accessed across views and shouldn't be lost when page is refreshed) (20 points).
    • Can check out (5 points).
      A user can check out if she has a payment option and a shipping address, on a successful checkout, the cart should be emptied
    • Can view orders, delete orders (10 points).
      An order is associated to a user and should contain at least four fields: date, total, number of products, shipped to
  2. Design and Misc (5 Points):
    • Site is overall user friendly and utilizes Bootstrap (3 points).
    • App passes JShint with no errors (2 points)
  3. Creative Portion (20 Points):