This repository contains Week4 Assignment Code of Course 'Introduction to Meteor.js Development' which is part of 'Responsive Website Development and Design Specialisation'
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.
Features:
- 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.
Extra Credits:
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?
Implement a search function that allows the user to search within the listed sites for key words
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.
To checkout and use this repository follow steps as listed below:
$ git clone https://github.com/pritamhinger/MeteorIntro_Week4Assignment.git
$ cd MeteorIntro_Week4Assignment
$ meteor
If there is a compilation error regarding bcrypt library then run below command before running
meteorcommand
$ meteor update
$ meteor
MeteorIntro_Week4Assignment is released under an [MIT License] (https://opensource.org/licenses/MIT). See License for details