1.0.4 • Published 4 years ago

amazon-keyword-research v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Amazon Keyword Scraper

From 1 keyword you can scrape up to hundreds and even thousands Unique and Relevant Keywords with a Number of Active Products per each keyword.



Features

  • Scrape Keywords with the number of active products from Amazon Store
  • Save result to a csv file or use as plugin in your app

Module

import { GrabKeywords } from './src';

const options = {
    keyword: "iphone",
    limit: 100,
};
let amazon = new GrabKeywords(options)._initScraper();

amazon.on('keywords', key => {
    console.log(key);
});

Options

let options = {
    // Keyword: {string default: ''}
    keyword: `iphone`,
    
    // Number of keywords to collect: {int default: 50}
    limit: 50,
    
    // Save result to a CSV file: {boolean default: false}
    save: false,

    // How many post should be downloaded asynchronously. Only if {download:true}: {int default: 5}
    asyncDownload: 5,
    
    // File path where all files will be saved: {string default: 'CURRENT_DIR'}
    filepath: `CURRENT_DIR`,
};

CSV Example

Demo



License

MIT

Free Software

1.0.4

4 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago