Statements | Branches | Functions | Lines |
---|---|---|---|
Ever had the need to fetch ratings for your IOS App using node? Tired of deducing the types returned by the App Store API? Then app-store-ratings
is what you're looking for!
Simple wrapper that let you fetch ratings for your IOS APP. Written in Typescript
.
There is no well documented API that returns JSON objects for the IOS App ratings. There is an endpoint that returns XML or JSON. The API that returns XML contains more data than the one that returns JSON. Converting from XML to JSON on several projects got a bit tedious. And voilΓ the package was born.
npm install app-store-ratings
yarn add app-store-ratings
No extensive tutorials required. Learn by example.
import { fetchRatings } from 'app-store-ratings';
function getRatings() {
fetchRatings({
projectId: 'XXX', // the IOS App projectId
country: 'YYY' // Optional country if your app is available across many stores
})
.then(ratings => console.log(ratings));
}
import { fetchRatings } from 'app-store-ratings';
async function getRatings() {
const ratings = await fetchRatings({
projectId: 'XXX', // the IOS App projectId
country: 'YYY' // Optional country if your app is available across many stores
});
console.log(ratings);
}
export interface IAppStoreRating {
id: string;
title: string;
updatedAt: string;
content: string;
rating: number;
voteCount: number;
voteSum: number;
version: string;
author: {
name: string;
uri: string;
};
}