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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@capgo/capacitor-health

v8.1.1

Published

Capacitor plugin to interact with data from Apple HealthKit and Health Connect

Readme

@capgo/capacitor-health

Capacitor plugin to read and write health metrics via Apple HealthKit (iOS) and Health Connect (Android). The TypeScript API keeps the same data types and units across platforms so you can build once and deploy everywhere.

Why Capacitor Health?

The only free, unified health data plugin for Capacitor supporting the latest native APIs:

  • Health Connect (Android) - Uses Google's newest health platform (replaces deprecated Google Fit)
  • HealthKit (iOS) - Full integration with Apple's health framework
  • Unified API - Same TypeScript interface across platforms with consistent units
  • Multiple metrics - Steps, distance, calories, heart rate, weight
  • Read & Write - Query historical data and save new health entries
  • Modern standards - Supports Android 8.0+ and iOS 14+
  • Modern package management - Supports both Swift Package Manager (SPM) and CocoaPods (SPM-ready for Capacitor 8)

Perfect for fitness apps, health trackers, wellness platforms, and medical applications.

Documentation

The most complete doc is available here: https://capgo.app/docs/plugins/health/

Install

npm install @capgo/capacitor-health
npx cap sync

iOS Setup

  1. Open your Capacitor application's Xcode workspace and enable the HealthKit capability.
  2. Provide usage descriptions in Info.plist (update the copy for your product):
<key>NSHealthShareUsageDescription</key>
<string>This app reads your health data to personalise your experience.</string>
<key>NSHealthUpdateUsageDescription</key>
<string>This app writes new health entries that you explicitly create.</string>

Android Setup

This plugin now uses Health Connect instead of Google Fit. Make sure your app meets the requirements below:

  1. Min SDK 26+. Health Connect is only available on Android 8.0 (API 26) and above. The plugin's Gradle setup already targets this level.
  2. Declare Health permissions. The plugin manifest ships with the required <uses-permission> declarations (READ_/WRITE_STEPS, READ_/WRITE_DISTANCE, READ_/WRITE_ACTIVE_CALORIES_BURNED, READ_/WRITE_HEART_RATE, READ_/WRITE_WEIGHT). Your app does not need to duplicate them, but you must surface a user-facing rationale because the permissions are considered health sensitive.
  3. Ensure Health Connect is installed. Devices on Android 14+ include it by default. For earlier versions the user must install Health Connect by Android from the Play Store. The Health.isAvailable() helper exposes the current status so you can prompt accordingly.
  4. Request runtime access. The plugin opens the Health Connect permission UI when you call requestAuthorization. You should still handle denial flows (e.g., show a message if checkAuthorization reports missing scopes).
  5. Provide a Privacy Policy. Health Connect requires apps to display a privacy policy explaining how health data is used. See the Privacy Policy Setup section below.

If you already used Google Fit in your project you can remove the associated dependencies (play-services-fitness, play-services-auth, OAuth configuration, etc.).

Privacy Policy Setup

Health Connect requires your app to provide a privacy policy that explains how you handle health data. When users tap "Privacy policy" in the Health Connect permissions dialog, your app must display this information.

Option 1: HTML file in assets (recommended for simple cases)

Place an HTML file at android/app/src/main/assets/public/privacypolicy.html:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Privacy Policy</title>
</head>
<body>
    <h1>Privacy Policy</h1>
    <p>Your privacy policy content here...</p>
    <h2>Health Data</h2>
    <p>Explain how you collect, use, and protect health data...</p>
</body>
</html>

Option 2: Custom URL (recommended for hosted privacy policies)

Add a string resource to your app's android/app/src/main/res/values/strings.xml:

<resources>
    <!-- Your other strings... -->
    <string name="health_connect_privacy_policy_url">https://yourapp.com/privacy-policy</string>
</resources>

This URL will be loaded in a WebView when the user requests to see your privacy policy.

Programmatic access:

You can also show the privacy policy or open Health Connect settings from your app:

// Show the privacy policy screen
await Health.showPrivacyPolicy();

// Open Health Connect settings (useful for managing permissions)
await Health.openHealthConnectSettings();

Usage

import { Health } from '@capgo/capacitor-health';

// Verify that the native health SDK is present on this device
const availability = await Health.isAvailable();
if (!availability.available) {
  console.warn('Health access unavailable:', availability.reason);
}

// Ask for separate read/write access scopes
await Health.requestAuthorization({
  read: ['steps', 'heartRate', 'weight'],
  write: ['weight'],
});

// Query the last 50 step samples from the past 24 hours
const { samples } = await Health.readSamples({
  dataType: 'steps',
  startDate: new Date(Date.now() - 24 * 60 * 60 * 1000).toISOString(),
  endDate: new Date().toISOString(),
  limit: 50,
});

// Persist a new body-weight entry (kilograms by default)
await Health.saveSample({
  dataType: 'weight',
  value: 74.3,
});

Supported data types

| Identifier | Default unit | Notes | | ---------- | ------------- | ----- | | steps | count | Step count deltas | | distance | meter | Walking / running distance | | calories | kilocalorie | Active energy burned | | heartRate| bpm | Beats per minute | | weight | kilogram | Body mass |

All write operations expect the default unit shown above. On Android the metadata option is currently ignored by Health Connect.

API

isAvailable()

isAvailable() => Promise<AvailabilityResult>

Returns whether the current platform supports the native health SDK.

Returns: Promise<AvailabilityResult>


requestAuthorization(...)

requestAuthorization(options: AuthorizationOptions) => Promise<AuthorizationStatus>

Requests read/write access to the provided data types.

| Param | Type | | ------------- | --------------------------------------------------------------------- | | options | AuthorizationOptions |

Returns: Promise<AuthorizationStatus>


checkAuthorization(...)

checkAuthorization(options: AuthorizationOptions) => Promise<AuthorizationStatus>

Checks authorization status for the provided data types without prompting the user.

| Param | Type | | ------------- | --------------------------------------------------------------------- | | options | AuthorizationOptions |

Returns: Promise<AuthorizationStatus>


readSamples(...)

readSamples(options: QueryOptions) => Promise<ReadSamplesResult>

Reads samples for the given data type within the specified time frame.

| Param | Type | | ------------- | ----------------------------------------------------- | | options | QueryOptions |

Returns: Promise<ReadSamplesResult>


saveSample(...)

saveSample(options: WriteSampleOptions) => Promise<void>

Writes a single sample to the native health store.

| Param | Type | | ------------- | ----------------------------------------------------------------- | | options | WriteSampleOptions |


getPluginVersion()

getPluginVersion() => Promise<{ version: string; }>

Get the native Capacitor plugin version

Returns: Promise<{ version: string; }>


openHealthConnectSettings()

openHealthConnectSettings() => Promise<void>

Opens the Health Connect settings screen (Android only). On iOS, this method does nothing.

Use this to direct users to manage their Health Connect permissions or to install Health Connect if not available.


showPrivacyPolicy()

showPrivacyPolicy() => Promise<void>

Shows the app's privacy policy for Health Connect (Android only). On iOS, this method does nothing.

This displays the same privacy policy screen that Health Connect shows when the user taps "Privacy policy" in the permissions dialog.

The privacy policy URL can be configured by adding a string resource named "health_connect_privacy_policy_url" in your app's strings.xml, or by placing an HTML file at www/privacypolicy.html in your assets.


Interfaces

AvailabilityResult

| Prop | Type | Description | | --------------- | ---------------------------------------- | ------------------------------------------------------ | | available | boolean | | | platform | 'ios' | 'android' | 'web' | Platform specific details (for debugging/diagnostics). | | reason | string | |

AuthorizationStatus

| Prop | Type | | --------------------- | ----------------------------- | | readAuthorized | HealthDataType[] | | readDenied | HealthDataType[] | | writeAuthorized | HealthDataType[] | | writeDenied | HealthDataType[] |

AuthorizationOptions

| Prop | Type | Description | | ----------- | ----------------------------- | ------------------------------------------------------- | | read | HealthDataType[] | Data types that should be readable after authorization. | | write | HealthDataType[] | Data types that should be writable after authorization. |

ReadSamplesResult

| Prop | Type | | ------------- | --------------------------- | | samples | HealthSample[] |

HealthSample

| Prop | Type | | ---------------- | --------------------------------------------------------- | | dataType | HealthDataType | | value | number | | unit | HealthUnit | | startDate | string | | endDate | string | | sourceName | string | | sourceId | string |

QueryOptions

| Prop | Type | Description | | --------------- | --------------------------------------------------------- | ------------------------------------------------------------------ | | dataType | HealthDataType | The type of data to retrieve from the health store. | | startDate | string | Inclusive ISO 8601 start date (defaults to now - 1 day). | | endDate | string | Exclusive ISO 8601 end date (defaults to now). | | limit | number | Maximum number of samples to return (defaults to 100). | | ascending | boolean | Return results sorted ascending by start date (defaults to false). |

WriteSampleOptions

| Prop | Type | Description | | --------------- | --------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | dataType | HealthDataType | | | value | number | | | unit | HealthUnit | Optional unit override. If omitted, the default unit for the data type is used (count for steps, meter for distance, kilocalorie for calories, bpm for heartRate, kilogram for weight). | | startDate | string | ISO 8601 start date for the sample. Defaults to now. | | endDate | string | ISO 8601 end date for the sample. Defaults to startDate. | | metadata | Record<string, string> | Metadata key-value pairs forwarded to the native APIs where supported. |

Type Aliases

HealthDataType

'steps' | 'distance' | 'calories' | 'heartRate' | 'weight'

HealthUnit

'count' | 'meter' | 'kilocalorie' | 'bpm' | 'kilogram'

Record

Construct a type with a set of properties K of type T

{ [P in K]: T; }

Credits:

this plugin was inspired by the work of https://github.com/perfood/capacitor-healthkit/ for ios and https://github.com/perfood/capacitor-google-fit for Android