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 🙏

© 2024 – Pkg Stats / Ryan Hefner

rn-apple-healthkit-oxygen

v0.8.1

Published

A React Native package for interacting with Apple HealthKit Based on Terrillo package add oxygen

Downloads

6

Readme

React Native Apple Healthkit

A React Native bridge module for interacting with Apple Healthkit data. Checkout the DEMO app.(https://github.com/terrillo/rn-apple-healthkit/tree/master/Demo)

Installation (React Native >=0.40)

Install the [rn-apple-healthkit] package from npm:

  • Run npm install rn-apple-healthkit --save
  • Run react-native link rn-apple-healthkit
  • Run cd ./ios && pod install
  • Update ./ios/<Project Name>/info.plist in your React Native project
<key>NSHealthShareUsageDescription</key>
<string>Read and understand health data.</string>
<key>NSHealthUpdateUsageDescription</key>
<string>Share workout data with other apps.</string>
  • Enable Healthkit in your application's Capabilities
  • Build and run

Get Started

Initialize Healthkit. This will show the Healthkit permissions prompt for any read/write permissions set in the required options object.

Due to Apple's privacy model if an app user has previously denied a specific permission then they can not be prompted again for that same permission. The app user would have to go into the Apple Health app and grant the permission to your react-native app under sources tab.

For any data that is read from Healthkit the status/error is the same for both. This privacy restriction results in having no knowledge of whether the permission was denied (make sure it's added to the permissions options object), or the data for the specific request was nil (ex. no steps recorded today).

For any data written to Healthkit an authorization error can be caught. If an authorization error occurs you can prompt the user to set the specific permission or add the permission to the options object if not present.

If new read/write permissions are added to the options object then the app user will see the Healthkit permissions prompt with the new permissions to allow.

initHealthKit requires an options object with Healthkit permission settings

import AppleHealthKit from 'rn-apple-healthkit';

const PERMS = AppleHealthKit.Constants.Permissions;
const healthKitOptions = {
    permissions: {
        read:  [
            PERMS.Age,
            PERMS.Weight,
        ]
    }
};

AppleHealthKit.initHealthKit(healthKitOptions, (err, results) => {
    if (err) {
        console.log("error initializing Healthkit: ", err);
        return;
    }

    // Height Example
    AppleHealthKit.getDateOfBirth(null, (err, results) => {
      console.log(results)
    });

});

Height Example Response

{
	value: '1986-09-01T00:00:00.000-0400',
	age: 29
}

Wiki

Supported Apple Permissions

The available Healthkit permissions to use with initHealthKit

| Permission | Healthkit Identifier Type | Read | Write | |------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|------|-------| | ActiveEnergyBurned | HKQuantityTypeIdentifierActiveEnergyBurned | ✓ | | | BasalEnergyBurned | HKQuantityTypeIdentifierBasalEnergyBurned | ✓ | | | BiologicalSex | HKCharacteristicTypeIdentifierBiologicalSex | ✓ | | | BloodGlucose | HKQuantityTypeIdentifierBloodGlucose | ✓ | | | BloodPressureDiastolic | HKQuantityTypeIdentifierBloodPressureDiastolic | ✓ | ✓ | | BloodPressureSystolic | HKQuantityTypeIdentifierBloodPressureSystolic | ✓ | ✓ | | BodyMassIndex | HKQuantityTypeIdentifierBodyMassIndex | ✓ | ✓ | | BodyTemperature | HKQuantityTypeIdentifierBodyTemperature | ✓ | | | DateOfBirth | HKCharacteristicTypeIdentifierDateOfBirth | ✓ | | | DistanceCycling | HKQuantityTypeIdentifierDistanceCycling | ✓ | ✓ | | DistanceWalkingRunning | HKQuantityTypeIdentifierDistanceWalkingRunning | ✓ | ✓ | | FlightsClimbed | HKQuantityTypeIdentifierFlightsClimbed | ✓ | ✓ | | HeartRate | HKQuantityTypeIdentifierHeartRate | ✓ | | | Height | HKQuantityTypeIdentifierHeight | ✓ | ✓ | | LeanBodyMass | HKQuantityTypeIdentifierLeanBodyMass | ✓ | ✓ | | MindfulSession | HKCategoryTypeIdentifierMindfulSession | | ✓ | | RespiratoryRate | HKQuantityTypeIdentifierRespiratoryRate | ✓ | | | SleepAnalysis | HKCategoryTypeIdentifierSleepAnalysis | ✓ | | | StepCount | HKQuantityTypeIdentifierStepCount | ✓ | ✓ | | Steps | HKQuantityTypeIdentifierSteps | ✓ | ✓ | | Weight | HKQuantityTypeIdentifierBodyMass | ✓ | ✓ | | BodyFatPercentage | HKQuantityTypeIdentifierBodyFatPercentage | ✓ | ✓ |

These permissions are exported as constants of the rn-apple-healthkit module.

import AppleHealthKit from 'rn-apple-healthkit';

// get the available permissions from AppleHealthKit.Constants object
const PERMS = AppleHealthKit.Constants.Permissions;

// setup healthkit read/write permissions using PERMS
const healthKitOptions = {
    permissions: {
        read:  [
            PERMS.StepCount,
            PERMS.Height,
        ],
        write: [
            PERMS.StepCount
        ],
    }
};

Units

  • bpm
  • calorie
  • celsius
  • count
  • day
  • fahrenheit
  • foot
  • gram
  • hour
  • inch
  • joule
  • meter
  • mgPerdL
  • mile
  • minute
  • mmhg
  • mmolPerL
  • percent
  • pound
  • second

References