"Amazon Reviews Scraper" is a Node.js project designed to extract and analyze reviews from Amazon product listings.
You can use it in two ways:
- Command Line Interface (CLI):
./node_modules/amazon-reviews-scrapper/dist/bin/ars.js <amazon-link>
- Import as a Module:
import { getReviews } from 'amazon-reviews-scrapper'
Reviews will be of type IReview
, with the following properties:
-
name
: string -
rating
: string | undefined -
review_title
: string -
date
: string -
country
: string | undefined -
verified
: string -
description
: string