playstore-comments-to-csv

1.0.5 • Public • Published

Install

npm install playstore-comments-to-csv

Description

  • all comments will be collected from app store and generate csv files.
  • Three types of collection files.
    • HELPFULNESS
    • RATING
    • NEWEST

Usage

const {
  collectPlaystoreComments,
  generateCommentsJSON,
} = require("playstore-comments-to-csv");

// arg1 => name of directory which will contain csv files
// arg2 => app bundle id
// arg3 => number of comments upto 3000
collectPlaystoreComments("minecraft", "com.mojang.minecraftpe", 3000);

// arg1 => bundle id
// arg2 => number of comments upto 3000
// arg3 => sort, HELPFULNESS | RATING | NEWEST
const helpfulComments = await generateCommentsJSON(
  "com.mojang.minecraftpe",
  3000,
  "HELPFULNESS"
);
const ratingsComments = await generateCommentsJSON(
  "com.mojang.minecraftpe",
  3000,
  "RATING"
);
const newestComments = await generateCommentsJSON(
  "com.mojang.minecraftpe",
  3000,
  "NEWEST"
);

Output

img3.png

img4.png

Readme

Keywords

Package Sidebar

Install

npm i playstore-comments-to-csv

Weekly Downloads

0

Version

1.0.5

License

ISC

Unpacked Size

4.56 MB

Total Files

10

Last publish

Collaborators

  • paigeshin