Job Queue that fetches HTML requests from a specified url
##Fire it up
- Install packages: $ npm install
- Run redis server using: $ src/redis-server
- Run express server: $ node index.js
- Run a cURL command to API with url to scrape(ex:google): $ curl -i -X GET 'http://localhost:3000/?url="http://www.google.com/"'
- note the job id returned from call
- Run another cURL command using the job id from first call: $ curl -i -X GET 'http://localhost:3000/?id=(insert job id here)'