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

@nordicid/nurapi

v0.9.9

Published

NUR RFID Reader API — core library

Readme

@nordicid/nurapi

Core library for communicating with Nordic ID NUR RFID reader modules. Provides the complete API for connecting to a reader and performing inventory, tag read/write, configuration, streaming, and more.

Install

npm install @nordicid/nurapi

You also need a transport package for your platform:

  • Node.jsnpm install @nordicid/nurapi-node (serial port, TCP socket)
  • Browsernpm install @nordicid/nurapi-web (Web Serial, Web Bluetooth)

Quick Start

import { NurApi } from '@nordicid/nurapi';
import '@nordicid/nurapi-node'; // registers ser:// and tcp:// transports

const reader = new NurApi();
await reader.connect('tcp://192.168.1.100');

// Read reader info
const info = await reader.getReaderInfo();
console.log(`Reader: ${info.name}, Serial: ${info.serial}`);

// Run inventory and fetch tags
const result = await reader.inventory();
const tags = await reader.fetchTags();
console.log(`Found ${result.tagsFound} tags`);
for (const tag of tags) {
  console.log(`  EPC: ${tag.epcHex}, RSSI: ${tag.rssi}`);
}

await reader.disconnect();

Connection

NurApi uses URI-based connection — the transport is resolved automatically from a registry:

| URI scheme | Transport | Package | |---|---|---| | tcp://host:port | TCP socket | @nordicid/nurapi-node | | ser://COM3 | Serial port | @nordicid/nurapi-node | | ws://host:port | WebSocket | @nordicid/nurapi (built-in) | | ser://request | Web Serial (browser) | @nordicid/nurapi-web | | ble://request | Web Bluetooth (browser) | @nordicid/nurapi-web |

Auto-reconnect is enabled by default with exponential backoff (1s to 30s).

Events

// Connection lifecycle
reader.on('connecting', () => console.log('Connecting...'));
reader.on('connected', () => console.log('Connected'));
reader.on('disconnected', () => console.log('Disconnected'));

// Streaming inventory
reader.on('inventoryStream', (event) => {
  console.log(`Tags so far: ${event.tagsAdded}`);
});

Streaming Inventory

reader.on('inventoryStream', (event) => {
  const tags = reader.tagStorage.toArray();
  console.log(`${tags.length} unique tags seen`);
});

await reader.startInventoryStream();
// ... tags arrive via events ...
await reader.stopInventoryStream();

Documentation

See the full API reference, guides, and advanced topics (Accessory Extension, Gen2v2, TAM authentication) at nordicid.github.io/nur_nurapi_typescript.

License

See LICENSE.