@egodigital/google-play-store
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

npm

@egodigital/google-play-store

A simplfied library for Node.js 10+ for accessing Google's Play Store APIs, written in TypeScript.

The module is quite new, so issues and pull requests are very welcome :-)

Install

Execute the following command from your project folder, where your package.json file is stored:

npm install --save @egodigital/google-play-store

Usage

import * as fs from 'fs';
import { Client as GooglePlayStoreClient } from '@egodigital/google-play-store';

const PRIVATE_KEY = fs.readFileSync(
    '/path/to/your/json/key/file'
);

const CLIENT = new GooglePlayStoreClient({
    key: PRIVATE_KEY,
});

const SUMMARY = await CLIENT.getAppDownloads({
    projectId: '<YOUR-PROJECT-ID>',
});

console.log(
    SUMMARY
);

Documentation

The API documentation can be found here.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.3.0
    0
    • latest

Version History

Package Sidebar

Install

npm i @egodigital/google-play-store

Weekly Downloads

0

Version

0.3.0

License

LGPL-3.0

Unpacked Size

23.9 kB

Total Files

8

Last publish

Collaborators

  • ekmobile
  • egodux
  • mkloubert
  • mkloubertego
  • ekegodigital