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 🙏

© 2026 – Pkg Stats / Ryan Hefner

slowlane

v1.4.1

Published

Simple CLI for managing App Store and Google Play metadata

Readme

slowlane

A simple CLI for managing App Store and Google Play metadata.

Fastlane is powerful but complex to set up. Slowlane focuses on one thing: making it easy to update localized metadata (titles, descriptions, keywords) across multiple languages. Screenshots, builds, and submitting for review are left to the respective console UIs.

Note: this code is vibe coded with Claude Code, but it's not a "one prompt" project; I was very specific in what I want to get, and I'm actually using this tool for managing metadata for my apps, and it saves a lot of time for me, because App Store Connect and Play Console are so bad when it comes to managing several localizations at once, and because I never figured out how to use Fastlane (maybe it's just not for me).

Typical Workflow

  1. Export current metadata from the live version as a starting point
  2. Edit the JSON file to update descriptions, keywords, etc. Use ChatGPT as needed to add translations to new locales. The list of locales supported by Apple and Google can be retrieved by slowlane apple list-locales and slowlane google list-locales.
  3. Create a new version (Apple only - Google doesn't require this for metadata)
  4. Import the updated metadata from the JSON file
  5. Review and submit in the respective console UI

This procedure does not cover writing release notes for Google Play releases; I don't normally need a tool for that because ChatGPT can generate the pseudo-XML they require. I might add it to the subsequent versions though (maybe with an OpenAI API token in the config, to handle translation).

Setup

Apple App Store Connect

  1. Go to App Store Connect > Users and Access > Integrations > App Store Connect API
  2. Generate a new API key with "App Manager" role
  3. Download the .p8 private key file
  4. Note the Key ID and Issuer ID

Google Play Console

  1. Go to Google Cloud Console
  2. Create a project (or use existing)
  3. Enable both APIs:
    • Google Play Developer Reporting API (for listing apps)
    • Google Play Android Developer API (for metadata operations)
  4. Create a Service Account with a JSON key
  5. In Google Play Console, go to Users and Permissions, invite your service account email, and grant "Manage store presence" and "Releases" permissions

Configuration

Create slowlane.toml in your project directory:

[appstore_connect]
issuer_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
key_id = "XXXXXXXXXX"
private_key_path = "./AuthKey_XXXXXXXXXX.p8"

[google_play]
service_account_path = "./your-service-account.json"

Add sensitive files to .gitignore:

slowlane.toml
*.p8
*-service-account.json

Usage

Apple App Store Connect

# List all apps
npx slowlane apple list-apps

# List supported locales
npx slowlane apple list-locales
npx slowlane apple list-locales --json

# View metadata for all languages (from editable version)
npx slowlane apple get-metadata com.example.app

# View full metadata for a specific language
npx slowlane apple get-metadata com.example.app en-US

# Save metadata from live version to JSON
npx slowlane apple get-metadata com.example.app --from live --json > metadata.json

# Create a new version
npx slowlane apple create-version com.example.app 2.0.0

# Update metadata from JSON file
npx slowlane apple set-metadata com.example.app -f metadata.json

Google Play

# List all apps
npx slowlane google list-apps

# List supported locales
npx slowlane google list-locales
npx slowlane google list-locales --json

# View metadata for all languages
npx slowlane google get-metadata com.example.app

# View full metadata for a specific language
npx slowlane google get-metadata com.example.app en-US

# Save metadata to JSON
npx slowlane google get-metadata com.example.app --json > metadata.json

# Update metadata from JSON (changes are sent for review automatically)
npx slowlane google set-metadata com.example.app -f metadata.json

Author

Alexander Fenster, [email protected]

100% vibe coded with Claude Code