Thanks to visit codestin.com
Credit goes to github.com

Skip to content

s-taylor/kickcomment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kick(starter) Comment API

Objective

This project is aiming to implement a kickstarter comment search engine. Currently there is no feature to facilitate searching kickstarter comments, this makes it difficult to know whether a question has already been asked before, or search for comments from a particular user. Furthermore, only 50 comments are shown on a page at a time meaning if you want to search all comments using the browser's find, you first need to click the Load More Comments button many many times to load all the comments.

Solution

  • Implement an API that can scrape all of the comments for a particular project
  • Provide the ability to search through these comments using a given keyword or username

Finally a basic front end UI will need to be built to facilitate searching. This will be done under a separate repo once the API is built.

Hosting

I'm using this as an oppurtunity to also learn AWS Lambda as it is the perfect candidate as an API to scrape comments adhoc (as requested by the user), so the Lamdba configuration (using the Serverless framework) will be included in the repo. This means if you want to deploy this, install Serverless on your machine and run the deploy command (see package.json).


To do List

In approximate order of priority...

  • Refactor endpoint to make id and name params rather than query string options since they're mandatory.
  • Cache comments in a database using the id. Then if after a request is made to kickstarter the results contain 1 or more comments that are already cached, you know that the rest of the comments have already been fetched which can then be used to avoid making any further requests to kickstarter.
  • Implement the ability to search comments (passing a query string)

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published