
In a previous blog post, we looked into the benefits of using Health Kit and Health Connect to use wearable data on your React Native app. By combining two distinct libraries with separate interfaces, we managed to unlock real-time health insights. But did you know these tools can do much more than just handle wearable-recorded data? Enter react-native-health-link, a developer-friendly library that simplifies health data integration by providing a unified interface for both HealthKit and Health Connect.
While developing health-related applications in React Native, working with health data can be tricky. While platform-specific libraries like HealthKit (iOS) and Health Connect (Android) are powerful, they each have their own APIs and data structures. This often results in duplicated efforts and a fragmented codebase.
react-native-health-link eliminates these headaches by bridging the gap, offering:
No more juggling separate implementations—this library keeps everything streamlined and developer-friendly.
With this library you can manage permissions for HealthKit and Health Connect for its supported data types, namely:
This open-source library is actively developed, and the list of supported data types will grow based on community needs. This first integration covers the most commonly used health metrics supported by the react-native-health
and react-native-health-link
libraries. We eventually plan to extend support to any data types compatible with HealthKit and Health Connect.
The library lets your app read and write supported data types, making it easy to access and update them. It also includes a utility to check whether the native SDKs (HealthKit/Health Connect) are available on the user’s device.
Getting started with react-native-health-link is a breeze. You can initialize health data access in just a few lines of code. To initialize, simply use the initializeHealth
function and provide an object specifying the permissions you want to request from the user.
import {
initializeHealth,
HealthLinkPermissions,
} from 'react-native-health-link';
`initializeHealth({` ` read: [HealthLinkPermissions.BloodGlucose],` ` write: [HealthLinkPermissions.BloodGlucose],` `});` ``
To read data, use the read function along with the HealthLinkDataType
enum to specify the desired data type. You can also pass additional options, such as startDate
, endDate,
limit
, or ascending
, to customize your query.
read(HealthLinkDataType.BloodGlucose, {
startDate: new Date('2025-01-01').toISOString(),
})
Similarly, to use the write function and select a data type from the WriteDataType
enum. Then, pass any necessary options as the second argument to configure the data input.
write(HealthLinkDataType.BloodGlucose, {
value: 4,
unit: BloodGlucoseUnit.MmolPerL,
});
The library is currently at the beginning of its development, and we have big plans for its future. Here’s what you can expect:
Whether you're building a fitness tracker, a wellness app, or a personalized health assistant, this library is perfect for saving time and providing a unified interface. To get started today, follow the installation guide available in react-native-health-link’s documentation.
If you're looking for a partner to help you streamline your healthcare app, we could be just what you’re looking for. Feel free to reach out and thanks for reading!