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-smpclient

v0.1.1

Published

smpclient port to react-native-ble-managerble-manager

Readme

react-native-smpclient

inspired by the smpclient python library

Installation

npm install react-native-smpclient

Usage

Basic Setup

import {
  SMPClient,
  SMPBLETransport,
  isSuccess,
  isError,
} from 'react-native-smpclient';
import BleManager from 'react-native-ble-manager';

// Initialize BLE Manager first
BleManager.start({ showAlert: false });

Creating a Client

const transport = new SMPBLETransport();
const client = new SMPClient(transport, 'My Board', {
  timeoutMs: 5000,
  debug: true, // Enable debug logging
});

Echo Test

try {
  await client.connect();
  
  const response = await client.echo('Hello from React Native!');
  
  if (isSuccess(response)) {
    console.log('Device echoed:', response.data.r);
  } else if (isError(response)) {
    console.error('Echo failed:', response);
  }
  
  await client.disconnect();
} catch (error) {
  console.error('Error:', error);
}

Getting Device Information

await client.connect();

// Get MCU parameters
const params = await client.getMCUMgrParameters();
if (isSuccess(params)) {
  console.log('Buffer size:', params.data.buf_size);
  console.log('Buffer count:', params.data.buf_count);
}

// Get image states
const imageStates = await client.getImageStates();
if (isSuccess(imageStates)) {
  imageStates.data.images.forEach((img, idx) => {
    console.log(`Image ${idx}: Slot ${img.slot}, Active: ${img.active}`);
  });
}

await client.disconnect();

Uploading Firmware

// Read firmware file (example using react-native-fs)
const fileData = new Uint8Array(/* your firmware data */);

await client.connect();

// Upload with progress tracking
await client.uploadImage(fileData, {
  imageNum: 1, // Target slot
  onProgress: (progress) => {
    console.log(`Upload progress: ${progress.percentage}%`);
    console.log(`Uploaded: ${progress.offset} / ${progress.total} bytes`);
  },
});

// Verify and activate the uploaded image
const imageStates = await client.getImageStates();
if (isSuccess(imageStates) && imageStates.data.images[1]?.hash) {
  // Set image as active
  await client.testImage(imageStates.data.images[1].hash);
  
  // Reset device to apply update
  await client.reset();
}

await client.disconnect();

API Reference

SMPClient Methods

  • connect() - Connect to the device
  • disconnect() - Disconnect from the device
  • echo(message: string) - Send an echo command
  • getMCUMgrParameters() - Get MCU manager parameters
  • getImageStates() - Get current firmware image states
  • uploadImage(data: Uint8Array, options) - Upload firmware image
    • options.imageNum - Target image slot (default: 0)
    • options.onProgress - Progress callback
  • testImage(hash: Uint8Array) - Mark an image for testing on next boot
  • confirmImage(hash?: Uint8Array) - Confirm current image as permanent
  • reset() - Reset the device

See the example app for a complete implementation.

License

MIT