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

webbluetooth

v3.2.1

Published

Node.js implementation of the Web Bluetooth Specification

Downloads

882

Readme

Node Web Bluetooth

Node.js implementation of the Web Bluetooth Specification

Build Status npm Licence MIT

Prerequisites

Node.js > v10.20.0, which includes npm.

Installation

$ npm install webbluetooth

Getting Started

See the examples or view the API documentation at:

https://thegecko.github.io/webbluetooth/

Usage

The module exports a default navigator.bluetooth instance, the Bluetooth class to allow you to instantiate your own bluetooth instances and the Bluetooth helper methods:

Using the default bluetooth instance

To use existing Web Bluetooth scripts, you can simply use the default bluetooth instance in place of the navigator.bluetooth object:

const bluetooth = require('webbluetooth').bluetooth;

const device = await bluetooth.requestDevice({
    filters:[{ services:[ 'heart_rate' ] }]
});

const server = await device.gatt.connect();
...

The first device matching the filters will be returned.

Creating your own bluetooth instances

You may want to create your own instance of the Bluetooth class. For example, to inject a device chooser function or control the referring device:

const Bluetooth = require('webbluetooth').Bluetooth;

const deviceFound = (device, selectFn) => {
    // If device can be automatically selected, do so by returning true
    if (device.name === 'myName') return true;

    // Otherwise store the selectFn somewhere and execute it later to select this device
};

const bluetooth = new Bluetooth({ deviceFound });

const device = await bluetooth.requestDevice({
    filters:[{ services:[ 'heart_rate' ] }]
});

const server = await device.gatt.connect();
...

Specification

The Web Bluetooth specification can be found here:

https://webbluetoothcg.github.io/web-bluetooth/

Implementation Status

bluetooth

  • [ ] getAvailability() - unsupported in adapter
  • [x] referringDevice
  • [x] requestDevice()
  • [x] getDevices()
  • [x] RequestDeviceOptions.filter.name
  • [x] RequestDeviceOptions.filter.namePrefix
  • [x] RequestDeviceOptions.filter.services
  • [x] RequestDeviceOptions.filter.manufacturerData
  • [x] RequestDeviceOptions.filter.serviceData
  • [x] RequestDeviceOptions.acceptAllDevices
  • [x] RequestDeviceOptions.optionalServices
  • [ ] RequestDeviceOptions.exclusionFilters
  • [ ] RequestDeviceOptions.optionalManufacturerData - used in advertisements, unsupported in adapter

BluetoothDevice

  • [x] id
  • [x] name
  • [x] gatt
  • [x] forget()
  • [ ] watchAdvertisements() - unsupported in adapter
  • [ ] watchingAdvertisements - unsupported in adapter

BluetoothRemoteGATTServer

  • [x] device
  • [x] connected
  • [x] connect()
  • [x] disconnect()
  • [x] getPrimaryService()
  • [x] getPrimaryServices()

BluetoothRemoteGATTService

  • [x] uuid
  • [x] device
  • [x] isPrimary
  • [x] getCharacteristic()
  • [x] getCharacteristics()
  • [ ] getIncludedService() - unsupported in adapter
  • [ ] getIncludedServices() - unsupported in adapter

BluetoothRemoteGATTCharacteristic

  • [x] uuid
  • [x] service
  • [x] value
  • [ ] properties.broadcast - unsupported in adapter
  • [x] properties.read
  • [x] properties.writeWithoutResponse
  • [x] properties.write
  • [x] properties.notify
  • [x] properties.indicate
  • [ ] properties.authenticatedSignedWrites - unsupported in adapter
  • [ ] properties.reliableWrite - unsupported in adapter
  • [ ] properties.writableAuxiliaries - unsupported in adapter
  • [x] getDescriptor()
  • [x] getDescriptors()
  • [x] readValue()
  • [x] writeValue()
  • [x] writeValueWithResponse()
  • [x] writeValueWithoutResponse()
  • [x] startNotifications()
  • [x] stopNotifications()

BluetoothRemoteGATTDescriptor

  • [x] uuid
  • [x] characteristic
  • [x] value
  • [x] readValue()
  • [x] writeValue()

BluetoothUUID

  • [x] getService()
  • [x] getCharacteristic()
  • [x] getDescriptor()
  • [x] canonicalUUID()

Events

Bluetooth

  • [ ] availabilitychanged - unsupported in adapter

Bluetooth Device

  • [x] gattserverdisconnected
  • [ ] advertisementreceived - unsupported in adapter

Bluetooth Service

  • [x] serviceadded
  • [ ] servicechanged - unsupported in adapter
  • [ ] serviceremoved - unsupported in adapter

Bluetooth Characteristic

  • [x] characteristicvaluechanged

Other

  • [x] Device selector hook
  • [x] Examples
  • [x] API Documentation

Development

Cloning

This repository uses a submodule to reference the SimpleBLE library. Clone it as follows:

git clone https://github.com/thegecko/webbluetooth
cd webbluetooth
git submodule update --init

Building

To build the SimpleBLE module, bindings and TypeScriptsource, run:

yarn build:all

Testing

The tests are set up to use a BBC micro:bit in range with the following services available:

  • Device Info Service (0000180a-0000-1000-8000-00805f9b34fb)
  • LED Service (e95dd91d-251d-470a-a062-fa1922dfa9a8)
  • Button Service (e95d9882-251d-470a-a062-fa1922dfa9a8)

Sample code and hex file for the v2 micro:bit can be found in the firmware folder.

To run the tests:

yarn test