UNPKG

amazonproductscraper

Version:

Get title,name,price,images,description and specs of Amazon Products by URL or text search

11 lines (8 loc) 251 B
import { Product, getASINByText } from './Product.class'; (async () => { const producto = await new Product( 'https://www.amazon.com/-/es/dp/' + (await getASINByText('nvidia 2060 rtx')) ).init(); console.log(producto.get()); })();