Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.9 KB

README.md

File metadata and controls

34 lines (22 loc) · 1.9 KB

Site Ace


A Website aggregator app created for Coursera's Introduction to Meteor.js Development course.

Created with Meteor.

Instructions from course

You are to make a website aggregator application. The purpose of the application is to allow users to share, discuss and rate pages they find on the internet. You are provided with some starter code which displays a simple list of websites. You can gain up to 70% by implementing the following features:

  1. Users can register and login.
  2. Users can post new websites if they are logged in. Websites posted by users should have an URL and a description.
  3. Users can up and down vote webpages by clicking a plus or a minus button.
  4. Websites should be listed with the most up voted site first.
  5. The listing page shows when the website was added and how many up and down votes it has.
  6. Users can move to a detail page for a website (using routing).
  7. On the detail page, users can post comments about a webpage, and they are displayed below the description of the webpage.

You can gain a further 30% by implementing one or more of the following features:

  • Challenge 1: Automatic information

    Can you use the HTTP package for Meteor to pull in information about the posted web links automatically, so the user does not need to enter anything other than the URL?

  • Challenge 2: Search function

    Implement a search function that allows the user to search within the listed sites for key words.

  • Challenge 3: Website recommender

    Can you recommend websites to users based on things they have up voted and commented on? E.g. if I up vote a site entitled ‘Tofu recipes’, it would recommend other sites with ‘tofu’ and ‘recipe’ in their titles or descriptions.

You should deploy your application using the Meteor deploy command and submit a link to the site running on the Meteor server.