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

react-native-google-fit

v0.22.1

Published

A React Native bridge module for interacting with Google Fit

Readme

react-native-google-fit

npm version Downloads

A React Native bridge module for interacting with Google Fit on Android.

⚠️ Important Notice: Google has deprecated the Google Fit API and is transitioning to Health Connect. While the Google Fit API remains available, we are committed to maintaining this library and bringing it up to the latest standards. We will continue to support this library as long as the API is accessible and will provide migration guidance when Health Connect integration becomes necessary.

Features

  • Step counting and activity tracking
  • Body measurements (weight, height)
  • Heart rate & blood pressure monitoring
  • Blood glucose tracking
  • Sleep tracking with stages
  • Nutrition & hydration logging
  • Workout sessions with activity types
  • Background recording without Google Fit app
  • Expo support via config plugin

Documentation

Quick Start

Installation

# Expo
npx expo install react-native-google-fit

# React Native CLI
npm install react-native-google-fit --save
# or
yarn add react-native-google-fit

→ Full installation instructions

Basic Usage

import GoogleFit, { Scopes } from 'react-native-google-fit'

// 1. Authorize
const options = {
  scopes: [
    Scopes.FITNESS_ACTIVITY_READ,
    Scopes.FITNESS_ACTIVITY_WRITE,
    Scopes.FITNESS_BODY_READ,
    Scopes.FITNESS_BODY_WRITE,
  ],
}

const authResult = await GoogleFit.authorize(options)

// 2. Get daily steps
const steps = await GoogleFit.getDailyStepCountSamples({
  startDate: "2024-01-01T00:00:00.000Z",
  endDate: new Date().toISOString()
})

// 3. Save weight
await GoogleFit.saveWeight({
  value: 75.5,
  date: new Date().toISOString(),
  unit: "kg"
})

→ See full API documentation

Example App

Check out the example app repository for a complete working example.

API Categories

🏃 Activity & Steps

Track steps, distance, move minutes, and calories burned.

View methods →

📏 Body Measurements

Record and retrieve weight and height data.

View methods →

❤️ Heart Rate & Blood Pressure

Monitor cardiovascular health metrics.

View methods →

🩸 Blood Glucose & Vitals

Track blood glucose, body temperature, and oxygen saturation.

View methods →

🍎 Nutrition & Hydration

Log food intake and water consumption.

View methods →

😴 Sleep

Record sleep sessions with stages (light, deep, REM).

View methods →

🏋️ Workouts

Save and retrieve workout sessions with activity types.

View methods →

Requirements

  • Android: SDK 16+ (React Native 0.60+)
  • Google Play Services: Auth & Fitness APIs
  • OAuth 2.0: Configured in Google Cloud Console

→ Setup instructions

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'feat: add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

See CONTRIBUTING.md for details.

Troubleshooting

Common Issues

"Authorization Failed"

  • Verify SHA-1 certificate matches Google Cloud Console
  • Check package name is correct
  • Add test user email in OAuth consent screen

"Google Play Services not available"

  • Update Google Play Services on device/emulator

→ Full troubleshooting guide

License

MIT © StasDoskalenko

Support

Acknowledgements

Thanks to all contributors who have helped make this library better!