Make a social website aggregator using Meteor. A social website aggregator allows users to share, discuss and rank interesting webpages they have found. Please download this ZIP file before you begin your assignment.
Instructions: 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.
Users can register and login.
Users can post new websites if they are logged in. Websites posted by users should have an URL and a description.
Users can up and down vote webpages by clicking a plus or a minus button.
Websites should be listed with the most up voted site first.
The listing page shows when the website was added and how many up and down votes it has.
Users can move to a detail page for a website (using routing).
On the detail page, users can post comments about a webpage, and they are displayed below the description of the webpage.
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? (implemented)
Search function Implement a search function that allows the user to search within the listed sites for key words (not implemented)
- Make sure you already have Meteor intalled
- Into project folder run:
meteor
- Open your web browser and go to http://localhost:3000 to see the app running.