Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@neurodevs/node-ble-scanner

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@neurodevs/node-ble-scanner

Scan for Bluetooth Low Energy (BLE) devices

Source
npmnpm
Version
0.4.4
Version published
Weekly downloads
25
-65.28%
Maintainers
1
Weekly downloads
 
Created
Source

node-ble-scanner

Scan for Bluetooth Low Energy (BLE) peripherals

Installation

Install the package using npm:

npm install @neurodevs/node-ble-scanner

Or yarn:

yarn add @neurodevs/node-ble-scanner

Usage

Basic Usage

To scan for specific BLE peripherals by their uuids:

import { BleScannerImpl } from '@neurodevs/node-ble-scanner'

async function discoverPeripherals() {
    const uuids = ['uuid-for-your-bluetooth-peripheral']

    const scanner = BleScannerImpl.Create()
    const peripherals = await scanner.scanForPeripherals(uuids)

    console.log('Discovered Peripherals:', peripherals)
}

Testing

For testing, you can replace the BleScannerImpl class with test doubles:

import {
  BleScannerImpl,
  FakeBleScanner,
  SpyBleScanner
} from '@neurodevs/node-ble-scanner'

// Use for a fake implementation with validations for user interactions
BleScannerImpl.Class = FakeBleScanner

// Use to test real behavior with enhanced internal visibility
BleScannerImpl.Class = SpyBleScanner

const scanner = BleScannerImpl.Create()

If you use the SpyBleScanner test double (or any other test double you create which extends BleScannerImpl), then it will use the real noble library unless otherwise set, which is an open-source package that manages the lower-level Bluetooth connection.

You can also fake noble so that you do not require actual BLE hardware in your tests:

import {
    BleScannerImpl,
    FakeNoble,
} from '@neurodevs/node-ble-scanner'

BleScannerImpl.noble = new FakeNoble()

const scanner = BleScannerImpl.Create()

FAQs

Package last updated on 18 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts