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

thethingbox-noble

v0.0.1

Published

A node.js BLE (Bluetooth low energy) central library.

Downloads

13

Readme

noble

It is a fork of noble (https://github.com/sandeepmistry/noble) with safety check for stability with the sensor tag

A node.js BLE (Bluetooth low energy) central module.

Want to implement a peripheral? Checkout bleno

Note: Mac OS X and Linux are currently the only supported OSes, and are still under development. Other platforms will be developed later on (see Roadmap below).

Prerequisites

Linux (Ubuntu)

  • sudo apt-get install libbluetooth-dev
  • Run as sudo or root

Install

npm install noble

Usage

var noble = require('noble');

Actions

Start scanning:

noble.startScanning(); // any service UUID, no duplicates


noble.startScanning([], true); // any service UUID, allow duplicates


var serviceUUIDs = ["<service UUID 1>", ...]; // default: [] => all
var allowDuplicates = <false|true>; // default: false

noble.startScanning(serviceUUIDs, allowDuplicates); // particular UUID's

Stop scanning:

noble.stopScanning();

Peripheral connect:

peripheral.connect([callback(error)]);

Peripheral disconnect or cancel pending connection:

peripheral.disconnect([callback(error)]);

Peripheral update RSSI

peripheral.updateRssi([callback(error, rssi)]);

Peripheral discover services

peripheral.discoverServices(); // any service UUID

var serviceUUIDs = ["<service UUID 1>", ...];
peripheral.discoverServices(serviceUUIDs[, callback(error, services)]); // particular UUID's

Peripheral discover all services and characteristics

peripheral.discoverAllServicesAndCharacteristics([callback(error, services, characteristics));

Peripheral discover some services and characteristics

var serviceUUIDs = ["<service UUID 1>", ...];
var characteristicUUIDs = ["<characteristic UUID 1>", ...];
peripheral.discoverSomeServicesAndCharacteristics(serviceUUIDs, characteristicUUIDs, [callback(error, services, characteristics));

Service discover included services

service.discoverIncludedServices(); // any service UUID

var serviceUUIDs = ["<service UUID 1>", ...];
service.discoverIncludedServices(serviceUUIDs[, callback(error, includedServiceUuids)]); // particular UUID's

Service discover characteristics

service.discoverCharacteristics() // any characteristic UUID

var characteristicUUIDs = ["<characteristic UUID 1>", ...];
service.discoverCharacteristics(characteristicUUIDs[, callback(error, characteristics)]); // particular UUID's

Characteristic read

characteristic.read([callback(error, data)]);

Characteristic write

characteristic.write(data, notify[, callback(error)]); // data is a buffer, notify is true|false

Characteristic broadcast

characteristic.broadcast(broadcast[, callback(error)]); // broadcast is true|false

Characteristic notify

characteristic.notify(notify[, callback(error)]); // notify is true|false

Characteristic discover descriptors

characteristic.discoverDescriptors([callback(error, descriptors)]);

Descriptor read value

descriptor.readValue([callback(error, data)]);

Descriptor write value

descriptor.writeValue(data[, callback(error)]); // data is a buffer

Events

Adapter state change:

state = <"unknown" | "resetting" | "unsupported" | "unauthorized" | "poweredOff" | "poweredOn">

noble.on('stateChange', callback(state));

Scan started:

noble.on('scanStart', callback);

Scan stopped:

noble.on('scanStop', callback);

Peripheral discovered:

peripheral = {
  uuid: "<uuid>",
  advertisement: {
    localName: "<name>",
    serviceData: <Buffer>,
    txPowerLevel: <int>,
    serviceUuids: ["<service UUID>", ...],
  },
  rssi: <rssi>
};

noble.on('discover', callback(peripheral));

Peripheral connected:

peripheral.on('connect', callback);

Peripheral disconnected:

peripheral.on('disconnect', callback);

Peripheral RSSI update

peripheral.on('rssiUpdate', callback(rssi));

Peripheral services discovered

peripheral.on('servicesDiscover', callback(services));

Service included services discovered

service.on('includedServicesDiscover', callback(includedServiceUuids));

Service characteristics discovered

characteristic = {
  uuid: "<uuid>",
   // properties: 'broadcast', 'read', 'writeWithoutResponse', 'write', 'notify', 'indicate', 'authenticatedSignedWrites', 'extendedProperties'
  properties: [...]
};

service.on('characteristicsDiscover', callback(characteristics));

Characteristic read

characteristic.on('read', callback(data, isNotification));

Characteristic write

characteristic.on('write', withoutResponse, callback());

Characteristic broadcast

characteristic.on('broadcast', callback(state));

Characteristic notify

characteristic.on('notify', callback(state));

Characteristic descriptors discovered

descriptor = {
  uuid: '<uuid>'
};

characteristic.on('descriptorsDiscover', callback(descriptors));

Descriptor value read

descriptor.on('valueRead', data);

Descriptor value write

descriptor.on('valueWrite');

Read handle

peripheral.readHandle(handle, callback(error, data));

Write handle

peripheral.writeHandle(handle, data, withoutResponse, callback(error));

Running on Linux

Must be run with sudo or as root user.

hci0 is used by default to override set the NOBLE_HCI_DEVICE_ID environment variable to the interface number.

Example, specify hci1:

sudo NOBLE_HCI_DEVICE_ID=1 node <your file>.js

Roadmap (TODO)

  • Mac OS X:

    • ~~Adapter state (unknown | reseting | unsupported | unauthorized | off | on)~~
    • ~~Scan~~
      • ~~startScanning~~
        • ~~service UUID's~~
        • ~~allow duplicates~~
      • ~~stopScanning~~
    • ~~Peripheral~~
      • ~~discovered~~
      • ~~connect~~
      • ~~disconnect/cancel connect~~
      • ~~update RSSI~~
      • ~~services~~
        • ~~discover~~
        • ~~disover included~~
        • ~~discover characteristics for services~~
      • ~~characteristics~~
        • ~~read~~
        • ~~write~~
        • ~~set broadcast value~~
        • ~~set notify value~~
        • ~~descriptors~~
          • ~~discover~~
          • ~~read~~
          • ~~write~~
      • ~~handle~~
        • ~~read~~
        • ~~write~~
          • ~~with response~~
          • without response
    • error handling
  • Linux

    • ~~Adapter state (unsupported | unauthorized | off | on)~~
    • ~~Scan~~
      • ~~startScanning~~
        • ~~service UUID's~~
        • ~~allow duplicates~~
      • ~~stopScanning~~
    • ~~Peripheral~~
      • ~~discovered~~
      • ~~connect~~
        • ~~public address~~
        • ~~random address~~
      • ~~disconnect/cancel connect~~
      • ~~update RSSI~~
      • ~~services~~
        • ~~discover~~
          • ~~filter by uuid~~
        • ~~discover included~~
        • ~~discover characteristics for services~~
          • ~~filter by uuid~~
      • ~~characteristics~~
        • ~~read~~
        • ~~write~~
        • ~~set broadcast value~~
        • ~~set notify value~~
        • ~~descriptors~~
          • ~~discover~~
          • ~~read~~
          • ~~write~~
      • ~~handle~~
        • ~~read~~
        • ~~write~~
          • ~~with response~~
          • ~~without response~~
    • error handling
  • Windows

    • TDB (most likely Windows 8 only)

Useful Links

License

Copyright (C) 2013 Sandeep Mistry [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.