Amazon Reviews Crawler
Crawls product reviews from Amazon.
Installation
Via npm:
npm install amazon-reviews-crawler
Or Yarn:
yarn add amazon-reviews-crawler
Usage
Load the module
var reviewsCrawler =
Get reviews by a product ASIN
This will return an object containing the title of the product and an array of review data.
Example of a return:
title: "Product Name" reviews: id: "R16DIYH5RRPEWK" title: "Review Title" rating: 5 text: "The product review body text." author: "Reviewer Name" date: "October 26, 2016" link: "https://www.amazon.com/gp/customer-reviews/R16DIYH5RRPEWK/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=0062472100"
Options
Options can also be provided to change the user agent string, review page, or elements being crawled.
Example: