Difference between revisions of "Module 9"

From CSE330 Wiki
Jump to navigationJump to search
Line 9: Line 9:
 
The following articles on the online class wiki textbook contain information that will help you complete the assignment.
 
The following articles on the online class wiki textbook contain information that will help you complete the assignment.
  
*[[MongoDB]]
+
*[[Preparations]]
*[[Express]]
 
*[[AngularJS]]
 
 
*[[Getting MEAN]]
 
*[[Getting MEAN]]
 
  
 
== Individual Assignments ==
 
== Individual Assignments ==
Line 39: Line 36:
  
 
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.
 +
Keep in mind that you don't have to understand what every line of code does. Whenever in doubt, refer to the default app.
  
  
 +
== Grading ==
  
Please save your file as ''birthday.html'' from the plain text editor of your choice.
+
We will be grading the following aspects of your work.  There are 100 points total.
 
 
'''Important Note:''' Writing your web page in a word processor like Microsoft Word or even WordPad or TextEdit will ''not'' work.  What you need is a plain text editor.
 
  
==== How to View Your HTML Document ====
+
# '''Working E-commerce Site (75 points)'''
 
+
#* MEAN installed and set up correctly (10 points).
Once you have ''birthday.html'', you can open it using your favorite web browser (like Firefox).  For the purposes of this exercise, it suffices to right-click the file and tell it to "open with" Firefox.  When the file opens, it should be under the file:/// protocol.
+
#* 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''
In Module 2, we will install a web server that serves up pages on the http:// protocol.
+
#* 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).
==== Validation ====
+
#* 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''
'''Your birthday card must pass the W3C Validator with no errors.''' From [http://validator.w3.org/ the validator], you can choose to upload your file.
+
#* 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''
For more information on validation, see the HTML and CSS guide: [[HTML and CSS#Validation]]
 
 
 
=== Make a Portal to a DuckDuckGo Search ===
 
 
 
'''Write an HTML document containing a form that searches DuckDuckGo's web site.'''  You should be able to type in a search term and have your form load the DuckDuckGo search page.
 
 
 
# Visit [https://www.duckduckgo.com/ www.duckduckgo.com].  Search for something easy to spot in the URL, like "QUERY".
 
# Look at the URL of the search page. What is the script URL?  What is the query variable?
 
# Make an HTML document containing a text field and a submit button.  Typing a search query into the text field and pressing the submit button should load the DuckDuckGo search page.
 
 
 
== Grading ==
 
  
We will be grading the following aspects of your work. There are 50 points total.
+
# ''Design and Misc (5 Points):'''
 +
#* Site is overall user friendly and utilizes Bootstrap (3 points).
 +
#* App passes JShint with no errors (2 points)
  
# '''Birthday Card (30 Points):'''
+
# ''Creative Portion (20 Points):'''
#* Correct usage of HTML and CSS in your birthday card (10 points).
+
#* TBD
#*: ''Make sure that you use HTML for "content" and CSS for "appearance."  Don't write inline styles: use a stylesheet.''
 
#* Experimenting with at least 5 different CSS properties in your birthday card (10 points).
 
#* Birthday card passes the W3C validation for the declared DOCTYPE (e.g., HTML 5) (10 points).
 
# '''Search Portal (15 Points):'''
 
#* DuckDuckGo search portal is functional (15 points).
 
# '''Account Created on Amazon Web Services (5 Points)'''
 
  
[[Category:Module 1]]
+
[[Category:Module 9]]
 
[[Category:Modules]]
 
[[Category:Modules]]

Revision as of 05:03, 30 April 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 introduce 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.


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

Follow the steps and 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

  • Make an e-commerce site using the MEAN stack.


To start, come up with use cases for your site. Think about what products the site is selling, what the user can do, and how information is stored etc.

You may start with the default MEAN.io app and build on top of it. This way you don't have to implement user authentication. You can also create a MEAN package and start from there.
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

Review the "Getting MEAN" section to understand the file system so you know how components work with each other. Keep in mind that you don't have to understand what every line of code does. Whenever in doubt, refer to the default app.


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
  1. Design and Misc (5 Points):'
    • Site is overall user friendly and utilizes Bootstrap (3 points).
    • App passes JShint with no errors (2 points)
  1. Creative Portion (20 Points):'
    • TBD