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

@bearound/telemetry-react-native-sdk

v0.2.0

Published

Bearound Telemetry SDK for React Native — beacon-hardware telemetry (battery, temperature, movement, firmware, signal) with no location permission. Android only. This SDK does not track people.

Readme

Bearound Telemetry — React Native SDK

React Native wrapper for the Bearound Telemetry Android SDK — beacon-hardware telemetry (battery, temperature, movement, firmware version, signal) using Bluetooth scanning with neverForLocation.

IMPORTANT — no tracking. This SDK does not track people. It requires no location permission and produces no positioning data. It collects exclusively the health telemetry advertised by Bearound beacons. For presence/positioning, use the main @bearound/react-native-sdk — both can (and should) run side by side.

Android only. On iOS the telemetry fields already travel through the main Bearound SDK.

Architecture

Two SDKs, one integration:

| | @bearound/react-native-sdk (tracking) | @bearound/telemetry-react-native-sdk (this) | |---|---|---| | Purpose | Presence & positioning | Beacon hardware health | | Permissions | Location + Bluetooth | Bluetooth only (neverForLocation) | | Works without location permission | No | Yes |

When both are installed, configure() performs an automatic companion handoff: the telemetry SDK reuses the tracking SDK's business token and device id, so both report as the same device. If the user denies location, tracking stops — telemetry keeps working.

Installation

npm install @bearound/telemetry-react-native-sdk
# or
yarn add @bearound/telemetry-react-native-sdk

The Android native SDK is resolved from JitPack. Add JitPack to android/build.gradle if your project doesn't have it yet:

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

Requires minSdkVersion 26.

Usage

import BearoundTelemetry from '@bearound/telemetry-react-native-sdk';

// If the Bearound tracking SDK is installed and configured, the token is
// taken from it automatically (companion handoff) — resolves true.
// Optional 2nd arg: scan precision 'high' | 'medium' | 'low' (default 'medium') —
// prices the BACKGROUND radio duty and sync cadence; foreground is always LOW_LATENCY.
const companion = await BearoundTelemetry.configure('YOUR_BUSINESS_TOKEN');

await BearoundTelemetry.requestPermissions(); // "Nearby devices" on Android 12+
await BearoundTelemetry.startScanning();

const subscription = BearoundTelemetry.onBeacons((beacons) => {
  for (const b of beacons) {
    console.log(b.minor, b.battery, b.temperature, b.movements, b.firmware);
  }
});

// later
subscription.remove();
await BearoundTelemetry.stopScanning();

With the Bearound tracking SDK (recommended)

import { configure, startScanning } from '@bearound/react-native-sdk';
import BearoundTelemetry from '@bearound/telemetry-react-native-sdk';

await configure({ businessToken: TOKEN });
await startScanning();

await BearoundTelemetry.configure(TOKEN); // handoff: same device id, same token
await BearoundTelemetry.startScanning();

API

| Method | Returns | Notes | |---|---|---| | configure(businessToken, scanPrecision?) | Promise<boolean> | true = companion handoff happened; precision 'high'/'medium'/'low' prices background duty (foreground always LOW_LATENCY) | | requestPermissions() | Promise<void> | BLUETOOTH_SCAN on Android 12+ | | startScanning() | Promise<void> | Foreground + background collection | | stopScanning() | Promise<void> | | | getDeviceId() | Promise<string> | Tracking SDK's id after handoff | | onBeacons(cb) | EmitterSubscription | Live TelemetryBeacon[] readings |

TelemetryBeacon: { uuid, major, minor, rssi, lastSeen, battery?, temperature?, movements?, firmware? }.

License

MIT © Bearound