1.0.2 • Published 6 years ago

scraper_amazon v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

scraper_amazon

find information about product by link, like: price, availability, seller, title.

Installation:

npm install --save scraper_amazon

Usage async/await:

const scraper_amazon = require('scraper_amazon');

const url = 'https://www.amazon.es/Cotoneve-Maxi-Dischettix50-A-Azzur/dp/B01M8KKDBH/ref=sr_1_1?ie=UTF8&qid=1541087266&sr=8-1&keywords=B01M8KKDBH'
const currency = 'EUR';

await scraper_amazon(url, currency);

Usage simple Promise:

const scraper_amazon = require('scraper_amazon');

const url = 'https://www.amazon.es/Cotoneve-Maxi-Dischettix50-A-Azzur/dp/B01M8KKDBH/ref=sr_1_1?ie=UTF8&qid=1541087266&sr=8-1&keywords=B01M8KKDBH'
const currency = 'EUR';

await scraper_amazon(url, currency).then((data)=>{
  // ...
}).catch((err)=>{
  // ...
});

Result:

screenshot

Debug Usage:
const scraper_amazon = require('scraper_amazon');

const url = 'https://www.amazon.es/Cotoneve-Maxi-Dischettix50-A-Azzur/dp/B01M8KKDBH/ref=sr_1_1?ie=UTF8&qid=1541087266&sr=8-1&keywords=B01M8KKDBH'
const currency = 'EUR';

await scraper_amazon(url, currency, true)
Result whith Debug Usage:

Screenshot of web page:

screenshot