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

stora-sh

v0.0.0

Published

Mobile app store automation platform - Screenshots, ASO, Compliance, and Deployment

Readme

Stora

The intelligent mobile app deployment tool.

CI npm version License: MIT

Features

  • AI-Powered Screenshots - Agentic exploration of your app to capture App Store-ready screenshots
  • Compliance Checking - Validate your app against App Store and Play Store guidelines
  • AI Analysis - Uses Google Gemini for intelligent automation
  • Cross-Platform - Works with iOS and Android apps
  • Modular - Use individual packages or the full CLI

Quick Start

# Install globally
npm install -g stora-sh

# Capture screenshots (requires Maestro CLI and running simulator)
stora screenshots com.example.app --max-screenshots 10

# Check compliance
stora compliance ./my-app --platform ios

# Verify setup
stora doctor

Requirements

  • Node.js 18+
  • Maestro CLI - Install Maestro
  • Google AI API Key - Set GOOGLE_GENERATIVE_AI_API_KEY environment variable
  • Running iOS Simulator or Android Emulator with your app installed

CLI Commands

stora screenshots <bundleId>

Capture App Store-ready screenshots using AI-powered exploration.

stora screenshots com.example.app
stora screenshots com.example.app --max-screenshots 10 --output ./screenshots
stora screenshots com.example.app --max-steps 30 --model gemini-2.0-flash

Options: | Option | Default | Description | |--------|---------|-------------| | --max-steps <n> | 50 | Maximum exploration steps | | --max-screenshots <n> | 10 | Target number of screenshots | | --output <path> | ./store-screenshots | Output directory | | --save-eval | false | Save evaluation screenshots for debugging | | --model <model> | gemini-2.0-flash | AI model to use |

stora compliance [path]

Check your app for compliance issues before submission.

stora compliance ./my-app
stora compliance ./my-app --platform ios
stora compliance ./my-app --platform android --no-ai
stora compliance --strict

Options: | Option | Default | Description | |--------|---------|-------------| | -p, --platform <platform> | both | Target platform (ios, android, both) | | --no-ai | false | Disable AI-powered analysis | | --strict | false | Use strict checking mode |

stora doctor

Check if all dependencies are installed correctly.

stora doctor

Packages

Use the CLI for the full experience, or install individual packages for programmatic use:

| Package | Description | Install | |---------|-------------|---------| | stora-sh | Main CLI tool | npm i -g stora-sh | | @stora/screenshots | AI screenshot automation | npm i @stora/screenshots | | @stora/compliance | Compliance checking | npm i @stora/compliance | | @stora/shared | Shared utilities | npm i @stora/shared |

Environment Variables

# Required for AI features
export GOOGLE_GENERATIVE_AI_API_KEY=your-api-key

Development

# Clone the repo
git clone https://github.com/storasource/stora.git
cd stora

# Install dependencies
pnpm install

# Build all packages
pnpm build

# Run development mode
pnpm dev

Project Structure

stora/
├── apps/
│   └── cli/              # stora-sh CLI package
├── packages/
│   ├── screenshots/      # @stora/screenshots
│   ├── compliance/       # @stora/compliance
│   ├── shared/           # @stora/shared
│   ├── aso/              # @stora/aso (in development)
│   ├── analyzer/         # @stora/analyzer (in development)
│   ├── deployment/       # @stora/deployment (in development)
│   ├── build/            # @stora/build (in development)
│   └── assets/           # @stora/assets (in development)
├── docs/                 # Documentation
└── .github/workflows/    # CI/CD

License

MIT