npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

playup3

v1.1.1

Published

Publish APKs to Google Play Store

Downloads

9

Readme

playup Build Status Coverage Status npm js-standard-style

Upload APKs to Google Play

This package offers a streamlined way to publish packages in the Google Play Store

Install

npm install -g playup

Usage

Use the CLI

playup \
  --auth api.json \
  --recent-changes "en-US='lorem ipsum dolor'" \
  /path/to/Package.apk \
  /path/to/Expansion.obb \  # optional
  /path/to/Expansion2.obb   # optional

or the JavaScript API

var publisher = require('playup')({
  client_email: '',
  private_key: '',
})

publisher.upload('/path/to/apk', {
  obbs: [  // optional expansion files (max 2)
    '/path/to/somefile.obb'
  ],
  recentChanges: {
    'en-US': 'lorem ipsum dolor'
  },
}).then(function (data) {
  console.log(' > %s version %d is up!', data.packageName, data.versionCode)
})

Authentication

First you have to create a Google Play API Access. To do that go to the Google Play Developer Console and then with the account owner go to Settings -> API access and create a Google Play Android Developer project.

After that follow the instructions to create a Service Account. When you click Create Client ID, choose Service Account. You will get a JSON file with a public key and the service email.

gulp support

The upload method returns a Promise so this package can be used in conjunction with gulp with no extra plugins needed

gulp.task(upload, function () {
  return publisher.upload(apk, params)
})

CLI

playup --auth auth --recent-changes "recent changes" APK [[OBB], OBB]

auth

Required Type: File

a JSON file with the Authentication information

recent-changes

Required Type: string

A string with the format lang=changes where lang is the language code and changes the string that specifies the changes of this

track

Type: string

Specify track for this release. Can be alpha, beta, production or rollout. Default: alpha

APK

The path to the APK

OBB

The path to 1 or more expansion files

API

Playup = require('playup')

Playup is a constructor that can be called with or without new

publisher = new Playup(auth)

The instance of Playup has the auth option

auth

Required Type: object

The object with Authentication information. This object will have the following keys

  • client_email
  • private_key

publisher.upload(apk[, params[, callback]])

Upload specified APK. If no callback is specified, returns a Promise

apk

Required Type: string

The path to the APK to upload

params

Optional Type: object

The params object will add aditional information to this release. Currently, it can have these keys

track

Type: string Default: 'alpha'

Specify track for this release. Can be alpha, beta, production or rollout.

recentChanges

Type: object Default: {}

An object that specifies changes in this version. Has the language code as key and the changes as value.

obbs

Type: Array Default: []

An array that specifies the paths to the expansion files (OBBs) for this release

callback

A function to be called when the process finishes. It receives two params:

err

The error if the upload was not succesful

data

An object with the following properties

  • packageName
  • versionCode