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

smartcardreader

v2.0.0

Published

NFC SmartCardReader for Node.js on Windows

Downloads

5

Readme

SmartCardReader.node

NFC Smart Card Reader for Node.js on Windows (32 and 64 bit)

Installation

This module is equivalent to node-nfc but designed to work specifically on Windows, 32 and 64 bit where node-nfc fails due to driver issues.

npm install smartcardreader && node test

JavaScript Usage

SmartCardReader

Creates a new connection to a smart card reader. Optionally specify a reader name

var SmartCardReaderName = require('smartcardreader')('name of device');
var SmartCardReaderFirstFound = require('smartcardreader')();

SmartCardReader.device

Queries the first device name attached to Windows.

Returns: Device name on success, undefined on failure

SmartCardReader.devices

Returns the name of all connected devices

Returns: Array of device names

Events

  • read emits data from the tag when a tag is successfully read
  • connect when a connected device is found
  • disconnect when a connected device is removed

Examples

var SmartCardReader = require('smartcardreader')();

SmartCardReader.on('connect', (device) => {
  console.info(`connected: ${device}`);
});
SmartCardReader.on('disconnect', (device) => {
  console.info(`disconnected: ${device}`);
});
SmartCardReader.on('read', (data) => {
  console.info(`read: ${data}`);
});

Some readers register as multiple devices. To ensure connectivity is it advised that you specify the name of the expected device

Binding usage

SmartCardReader::queryFirst

Queries the first device name attached to Windows. This is an actual native query so caller is advised to cache the result.

SmartCardReader::queryAll

Queries all device names attached to Windows. This is an actual native query so caller is advised to cache the result.

Returns: Array of device names on success, Empty array on failure or when no device is attached.

SmartCardReader::poll

Polls data from the device. Caller should call this as often as possible to capture the data. Use of process.nextTick is advised.

Returns: An object { code: 123, data: "tag" }. Code is one of values listed here. Data is the data read from the Smart Card (if any).

SmartCardReader::setup

Re-initializes internal resources and context associated with the reader object. Calls release internally. You may pass a device name or SmartCardReader::queryFirst will be used.

Returns: true if context is valid AND the device name passed is found and ready.

SmartCardReader::release

Releases internal resources and context associated with the reader object.

Returns: thin air (void, chaos).