New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@egodigital/google-play-store

Package Overview
Dependencies
Maintainers
3
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@egodigital/google-play-store

API client for Google Play Store API.

0.3.0
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
3
Weekly downloads
 
Created
Source

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.

Keywords

google

FAQs

Package last updated on 20 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts