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

node-red-contrib-ble-scanner

v0.3.0

Published

Generic Node-RED BLE scanner for raw advertisement manufacturer data.

Readme

node-red-contrib-ble-scanner

Strict TypeScript Node.js library, CLI, and Node-RED nodes for collecting raw Bluetooth LE advertisement manufacturer data.

The package supports two BLE backend implementations:

  • auto: uses BlueZ on Linux when available, otherwise noble
  • bluez: uses Linux BlueZ over D-Bus
  • noble: uses @abandonware/noble

The scanner does not connect to BLE devices and does not parse or decrypt device-specific payloads. It listens for BLE advertisements and returns the raw manufacturer data bytes.

Library

The package exports a typed ESM API from dist/index.js:

  • discoverDevices(options) returns matching BLE devices
  • readDevices(options) listens for matching advertisements and collects raw manufacturer data
  • readDevice(device, options) reads advertisements for one discovered device
  • shutdownBluetooth() stops active BLE scans

Each reading contains device metadata, a timestamp, and a messages array. Every raw message includes the company id, original Buffer as data, plus hex, base64, bytes, length, and timestamp.

import { readDevices } from 'node-red-contrib-ble-scanner';

const readings = await readDevices({
  deviceName: 'My BLE Device',
  listenMs: 5000
});

console.log(readings.flatMap((reading) => reading.messages.map((message) => message.hex)));

Nodes

  • ble-reader-device: config node for BLE advertisement scanning, device selection, and filters
  • ble-reader-read: input node that collects raw manufacturer data

Use the config node's search button to discover devices from the Node-RED editor. Select one exact advertised device name, or keep "All discovered devices".

The output is placed in msg.payload as an array with zero, one, or multiple readings.

Incoming msg.payload may contain { deviceName, listenMs, serviceUuid } to override the configured values for one read.

CLI

npm install
npm run build
npm run discover
npm run read

Useful options:

node ./bin/ble-reader.js discover
node ./bin/ble-reader.js discover --name-prefix SK
node ./bin/ble-reader.js discover --service-uuid fff0
node ./bin/ble-reader.js read "My BLE Device" --listen-ms 5000
node ./bin/ble-reader.js read --bluetooth bluez --debug
node ./bin/ble-reader.js read "My BLE Device" --interval 5

read --interval 5 repeats an advertisement scan every five seconds until stopped.

Development

npm run build
npm run lint
npm test
npm run check