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

rfidfyi

v0.1.0

Published

TypeScript API client for RFIDFYI -- RFID tags, readers, frequency bands, EPC standards, and use cases. Zero dependencies.

Readme

rfidfyi

npm TypeScript License: MIT Zero Dependencies

TypeScript API client for RFIDFYI -- the comprehensive RFID reference covering tags (passive, active, semi-passive), readers, frequency bands (LF 125 kHz, HF 13.56 MHz, UHF 860-960 MHz), EPC/GS1 standards, ISO 18000 series, and industry use cases from supply chain to access control. Zero dependencies, uses native fetch.

Explore RFID at rfidfyi.com -- Tags | Readers | Glossary | API Docs

Install

npm install rfidfyi

Works in Node.js, Deno, Bun, and browsers (ESM).

Quick Start

import { RFIDFYI } from "rfidfyi";

const api = new RFIDFYI();

// Search RFID tags, readers, standards
const results = await api.search("uhf passive");

// Get RFID tag detail
const tag = await api.tag("impinj-monza-r6");
console.log(tag.frequency);    // "UHF 860-960 MHz"
console.log(tag.memory_size);  // "96-bit EPC"

// Get frequency band detail
const uhf = await api.frequency("uhf");
console.log(uhf.read_distance); // "Up to 12 meters"

// Compare two RFID tags
const comparison = await api.compare("impinj-monza-r6", "nxp-ucode-8");

API Methods

| Method | Description | |--------|-------------| | search(query) | Search tags, readers, standards, glossary | | glossaryTerm(slug) | Get glossary term definition | | tag(slug) | RFID tag detail | | reader(slug) | RFID reader detail | | family(slug) | Tag family detail | | frequency(slug) | Frequency band detail | | standard(slug) | RFID standard detail | | epc(slug) | EPC standard detail | | useCase(slug) | Use case detail | | compare(slugA, slugB) | Compare two RFID tags | | random() | Random RFID tag | | openapi() | OpenAPI 3.1.0 specification |

TypeScript Types

import type {
  SearchResult, TagDetail, ReaderDetail, FamilyDetail, FrequencyDetail,
  StandardDetail, EpcDetail, UseCaseDetail, GlossaryTerm, CompareResult,
} from "rfidfyi";

Also Available

| Language | Package | |----------|---------| | Python | rfidfyi on PyPI | | TypeScript | This package |

Code FYI Family

Part of the FYIPedia open-source developer tools ecosystem -- automatic identification and data capture technologies.

| Package | npm | Description | |---------|-----|-------------| | barcodefyi | npm | Barcode symbologies, standards -- barcodefyi.com | | qrcodefyi | npm | QR code types, versions, encoding -- qrcodefyi.com | | nfcfyi | npm | NFC chips, NDEF, standards -- nfcfyi.com | | blefyi | npm | BLE profiles, beacons, chips -- blefyi.com | | rfidfyi | npm | RFID tags, readers, frequencies -- rfidfyi.com | | smartcardfyi | npm | Smart cards, EMV, platforms -- smartcardfyi.com |

License

MIT