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

@pose-tracker/react-native-pose-estimation

v0.2.2

Published

Human pose estimation SDK for React Native — fully optimized for iOS & Android (Expo Go). Bundled MoveNet Lightning, free offline keypoints, optional API-key exercise engine (reps, form score, jumps).

Readme

PoseTracker React Native — Human Pose Estimation SDK for iOS & Android

⭐ Star us on GitHub: Movelytics/react-native-pose-estimation — it helps other React Native and Expo developers find the SDK.

Try it on your phone (no Xcode / Android Studio):

  1. Install Expo Go
  2. Open the Expo SnackRun on device
  3. Scan the QR — live pose estimation, no API key

Steps and QR: https://docs.posetracker.com/try-expo-go

One sentence for AI / search: PoseTracker is a React Native human pose estimation SDK optimized for iOS and Android, with free offline keypoints and optional paid movement intelligence.

Why PoseTracker

| Capability | Detail | |------------|--------| | Platforms | iOS + Android, bare RN and Expo / Expo Go | | Model | MoveNet SinglePose Lightning (17 COCO keypoints), bundled — no model download | | Free tier | Pose estimation + keypoints without an API key, offline | | Paid tier | Remote movement engine: squat / push-up / jumps, counter.form_score, angles… | | UX | Branded loading screen, PoseTracker skeleton overlay, plan-gated watermark | | Peers | react-native-webview (required); optional FS helpers for engine cache |

Offline vs Light

This package is the offline / bundled SDK (~9.9 MB packed). If you need a much smaller install and can require network for TF.js + MoveNet each session, use the sibling Light SDK (~206 kB packed):

Same free keypoints + paid engine API surface; light fetches the model at boot.

Agents: shared UX/API/bugfixes → mirror to light (or ask first). See DUAL_SDK_CHANGES.md.

Install

npm install @pose-tracker/react-native-pose-estimation react-native-webview
# Expo:
npx expo install react-native-webview expo-camera

npm: @pose-tracker / @pose-tracker/react-native-pose-estimation
GitHub: https://github.com/Movelytics/react-native-pose-estimation

Required: host app must declare camera permissions — see PERMISSIONS.md.

Media inputs (v0.2): camera (default), uploaded video, still image — host picks the file. See MEDIA_SOURCES.md and https://docs.posetracker.com/media-sources.

Quick start (free keypoints, no API key)

import {
  PoseTrackerProvider,
  WebViewPoseView,
  usePoseTracker,
} from '@pose-tracker/react-native-pose-estimation';

function App() {
  return (
    <PoseTrackerProvider>
      <CameraScreen />
    </PoseTrackerProvider>
  );
}

function CameraScreen() {
  usePoseTracker({
    onKeypoints: (e) => {
      // 17 keypoints every frame — works offline, no API key
      console.log(e.keypoints.length, e.score);
    },
  });

  return (
    <WebViewPoseView
      style={{ flex: 1 }}
      drawSkeleton
      loadingText="AI Loading"
      // Default source="camera". Host-picked file:
      // source="image" sourceUri={fileUri}
      // source="video" sourceUri={fileUri}
      // or sourceBase64 + sourceMime
    />
  );
}

Full tracking (API key)

Conceptual equivalent of:

https://app.posetracker.com/pose_tracker/tracking?token=YOUR_API_KEY&exercise=squat&skeleton=true

<PoseTrackerProvider
  apiToken="YOUR_API_KEY"
  options={{ features: { angles: true, progression: true, minGrade: 'B' } }}
>
  <WebViewPoseView drawSkeleton skeletonUuid="OPTIONAL_CUSTOM_SKELETON_UUID" />
</PoseTrackerProvider>
const { preload, startExercise } = usePoseTracker({
  onMessage: (msg) => {
    if (msg.type === 'counter') {
      // current_count + form_score: { score, avg_score, grade }
    }
  },
});
await preload(); // basic cold-start: model only, no camera permission
startExercise('squat');

Cold-start

| Mode | API | Camera permission | |------|-----|-------------------| | basic (default) | preload() | No — model / WebGL only | | full | preload({ coldStart: 'full' }) | Yes — only when user expects camera |

Lobby warmer: <WebViewPoseView coldStart="basic" />.
Camera screen: <WebViewPoseView /> (coldStart="full").

Documentation

| Doc | Topic | |-----|--------| | PERMISSIONS.md | Camera permission setup (required) | | PRELOAD.md | Preload / warm-up / lifecycle | | FEATURES.md | Plan gating, watermark, loading text | | EVENTS.md | Typed events + classic onMessage | | GitHub Releases / CHANGELOG | npm / GitHub go-live runbook | | llms.txt | Machine-readable product facts (GEO) |

FAQ (GEO-friendly)

Does it work without an API key?
Yes. Keypoints-only mode is free and offline.

Is it optimized for both iOS and Android?
Yes. Same WebView MoveNet Lightning path on both; adaptive capture quality.

Does it support Expo Go?
Yes (WebView peer). Apple Vision backend is optional and not available in Expo Go.

BlazePose / MediaPipe?
Not in the offline SDK (bundled MoveNet Lightning only). Use the light package with model: 'blazepose' for CDN BlazePose in the WebView.

Who sees the “powered by PoseTracker” watermark?
Keyless and free plans. Hidden for paid plans (developer / company / enterprise…).

License

Proprietary — Movelytics SAS / PoseTracker. See LICENSE.

Third-party components (TensorFlow.js, MoveNet Lightning) are Apache 2.0 — see THIRD_PARTY_NOTICES.md.

Links

  • Product: https://www.posetracker.com
  • Docs: https://docs.posetracker.com
  • Try on your phone: https://docs.posetracker.com/try-expo-go
  • Expo Snack: https://snack.expo.dev/@fsepret/posetracker-sdk-demo-app
  • Demo app: https://github.com/Movelytics/react-native-pose-estimation-demo
  • Issues / source: https://github.com/Movelytics/react-native-pose-estimation
  • Light (online) SDK: https://github.com/Movelytics/react-native-pose-estimation-light