appstore-comments-to-csv
v1.0.7
Published
collect 500 comments from app store and create csv file
Downloads
5
Readme
Install
npm install appstore-comments-to-csv
Description
- 500 comments will be collected from app store and generate
csv
files. - Two types of collection files.
- Helpful
- Recent
Usage
const {
collectAppStoreComments,
generateCommentsJSON,
} = require("appstore-comments-to-csv");
// first argument => App Id
// second argument => App Name (name of directory which will contain result files)
collectAppStoreComments(874656917, "IAM");
// first argument => App Id
// second argument => SORT, RECENT | HELPFUL
const recentComments = await generateCommentsJSON(appId, "RECENT");
const helpfulComments = await generateCommentsJSON(appId, "HELPFUL");