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

@appapprove/shopify-check

v0.1.1

Published

Pre-submission compliance checker for Shopify apps. Surfaces 20+ App Store review failures locally — API scopes, GDPR webhooks, App Bridge, billing, security headers, performance budget, and more.

Readme

@appapprove/shopify-check

Pre-submission compliance checker for Shopify apps. Surfaces 20+ App Store review failures locally before you submit — saves the typical 1-2 week back-and-forth with Shopify reviewers.

Install

npm install -g @appapprove/shopify-check

Requires Node.js 20 or newer.

Usage

Check the app in the current directory:

shopify-check

Check a specific app:

shopify-check /path/to/your/shopify-app

JSON output (pipeable):

shopify-check --json

Optional flags:

  • --app-url <url> — your deployed app URL (enables HTTPS-only + security-headers checks)
  • --privacy-policy <url> — your privacy policy URL (enables privacy-policy presence check)
  • --demo-store <url> — your Shopify demo-store URL (enables demo-store reachability check)

What it checks

  • API scopes — declared scopes vs actual API calls in your code
  • GDPR webhookscustomers/data_request, customers/redact, shop/redact handlers present + return 200
  • App Bridge — embedded admin uses App Bridge correctly (no host param leaks, session token usage)
  • Billing API — recurring app subscriptions wired correctly with Shopify's Billing API
  • GraphQL API compliance — supported API versions, no deprecated query patterns
  • HTTPS-only — all external URLs use HTTPS
  • Security headers — CSP, frame-ancestors, X-Content-Type-Options
  • Performance budget — bundle size + loading-time thresholds
  • Auto-populate forms — checkout-extension forms don't auto-fill PII
  • Privacy policy — URL reachable + non-empty
  • Demo store — URL reachable from Shopify's reviewer IPs
  • Theme cleanup — uninstall flow removes injected theme assets
  • Theme extension quality — theme-app-extension Liquid blocks have required attributes
  • Shopify Function quality — Functions return well-formed responses + handle edge cases
  • Merchant grade Function — Functions perform under high cart-line load
  • Trust asset checklist — required listing assets (icon, screenshots, support email)
  • Listing copy — name, summary, descriptions match App Store guidelines
  • CI workflow — your .github/workflows/deploy.yml deploys correctly
  • Import consistency — no broken imports between scaffold + worker entry
  • Install flow — OAuth install URL works + scopes get accepted
  • Screenshot quality — listing screenshots meet Shopify's resolution + aspect-ratio guidelines

Exit codes

  • 0 — all checks passed (or only warnings, depending on severity threshold)
  • 1 — one or more error severity findings (blocks submission)
  • 2 — invalid arguments / cannot read repo

How is this different from shopify app dev lint?

Shopify's CLI lints the scaffold — package layout, config files, declared bindings. shopify-check lints the App Store review surface — what reviewers will actually fail you on. Designed to be run BEFORE you submit, not just during development.

License

MIT — built and maintained by AppApprove.

Issues / contributions

github.com/ArasHuseyin/shopify-builder — issues + PRs welcome.