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

findmetester-react-native

v1.3.1

Published

FindMeTester SDK for React Native — auto-register your Android app and send daily heartbeats for Google Play closed testing.

Readme

findmetester-react-native

npm License: MIT

Official open-source SDK for FindMeTester — a free, community-driven test exchange platform for Google Play closed testing.

Open source & transparent: This SDK's full source code is available in this repository. It collects only app metadata (package name, version, app icon) — no user data, no tracking, no analytics. All network calls go to findmetester.com/api/sdk/* endpoints.

What does this SDK do?

FindMeTester helps Android developers get 12 testers for Google Play closed testing by exchanging tests with other developers. This SDK verifies that testers keep your app installed for the required 14-day period.

Specifically, it:

  1. Registers your app's public metadata (package name, version, icon) with FindMeTester on first launch
  2. Sends a daily heartbeat (just the SDK key + package name) to confirm the app is still installed
  3. That's it — no personal data, no device IDs, no tracking

Security & Privacy

  • No user data collected — only public app metadata (package name, version, icon)
  • No device fingerprinting — no IMEI, advertising ID, or device identifiers
  • No analytics or tracking — the SDK does not track user behavior
  • Minimal permissions — no special Android permissions required
  • MIT licensed — review the source code yourself
  • Zero dependencies — only peer dependencies you already likely use

Installation

npm install findmetester-react-native

Peer dependencies

npm install @react-native-async-storage/async-storage react-native-device-info react-native-background-fetch

Usage

Call init() once in your app entry point (e.g. App.tsx):

import { FindMeTester } from 'findmetester-react-native';

// Get your SDK key from https://findmetester.com/dashboard
FindMeTester.init('fmt_your_sdk_key');

That's it. The SDK will:

  1. Register your app (package name, version, icon) on first launch or version update
  2. Send daily heartbeats via background fetch to verify the app stays installed
  3. Auto-retry on next app foreground if a heartbeat was missed

How it works

  • On init(), the SDK checks if the current app version is already registered. If not, it sends app metadata to FindMeTester.
  • A background task runs once per day to confirm the app is still installed.
  • All data is stored locally via AsyncStorage. No user data is collected.

Network requests

The SDK makes requests only to these endpoints:

| Endpoint | When | Data sent | |----------|------|-----------| | POST /api/sdk/register | First launch / version update | SDK key, package name, version, app icon | | POST /api/sdk/heartbeat | Once per day | SDK key, package name |

Requirements

  • React Native >= 0.68
  • Android only (iOS is a no-op)

Native module (optional)

The package includes FindMeTesterIconModule which extracts the app launcher icon as base64. This is auto-linked on Android — no manual setup needed.

Links

License

MIT — see LICENSE for details.