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

native-barcode-scanner

v1.3.0

Published

A simple barcode scanner utility for node

Downloads

14

Readme

Native Barcode Scanner

It is a simple utility inspired by simple-barcode-scanner but made as a native and global keyboard scanner driver for Node, this means that it doesn't depend on the browser and it listens even when no GUI/UI is focused.

Most barcode scanners act like a keyboard, NBS handles this by listening for native events without using the DOM API. This is useful for scanning without focusing on any screen and works for multiple devices.

Why?

I needed a way to use multiple scanners on a PC without depending on one window being foused. It is not viable / reliable to use on electron and browser runing on machines used by several users at time.

Don't scare! NBS is pretty simple too and it can be used with a sigle scanner on a simple app :D, but with the security that data is not getting lost anymore.

How?

Barcode scanners are HID devices also, but there's one trick, they are FORBIDEN by some systems... Basically they doesn't allow HID connections for keyboards and mouses for security reasons. So while looking for a solution I found that node-hid is not that useful and we can't take a direct connection from the device.

So, how it is native? Well, this is the bittersweet part: We use Java to capture native/global keys and keybindings events, and yeah... you have to install it :/ but it is not that hard :B (I mean, probably you have it already installed, you know... minecraft). This is because neither Node or Deno support native events for keyboards and mices. Anyway, it is incredibly fast as well.

I'm currently looking for a C++ solution like ioHook but its installation is a little bit cursed, and it crashes all the time (at least for me and my builds) if you want to contribute with a native way to listen to key events and pipe them to JS please make a PR :D.

📦 Install

npm install --save native-barcode-scanner
// using ES6 modules
import BarcodeScanner from "native-barcode-scanner";

// using CommonJS modules
const BarcodeScanner = require("native-barcode-scanner");

🖥️ Usage

You can use NBS as a global listener or as a dedicated device listener.

Basic (global):

This will listens to al devices and will catch all codes from the multiple emitting devices. This is the way if you have just one device or if your device doesn't allow prefixing.

import BarcodeScanner from "native-barcode-scanner";

const options = {...foo}

const scanner = BarcodeScanner(options);

// Add a global listener
scanner.on('code', code => {
  console.log(code);
});

// Remove the listener
scanner.off();

Dedicated device:

As I said before, some devices allow code prefixing functions and you can use it to scope the NBS events.

To do this, you have to prefix your device with your choosen device ID string and then specify it at options.devicePrefix.

Note: NBS doesn't prefix your device, you must use one that does. Please read your device user guide.

import BarcodeScanner from "native-barcode-scanner";

const options = {
  devicePrefix: 'id1'
}

const scanner = BarcodeScanner(options);

// Add a global device scoped listener
scanner.on('code', code => {
  // This only works for the device(s) prefixed with id1
  console.log(code);
});

// Remove the listener
scanner.off();

Note: We un-prefix the code for you ;) you can log it as clean as it is on the paper.

🧰 API

BarcodeScanner

Creates an instance of Scanner to use the code events.

Parameters

  • Options Object

    • latency Number Max time duration (in ms) between consecutive inputs

      default: 50

    • minLength Number Min length of a valid barcode

      default: 3

    • endKeys string Key name indicating end of barcode

      Refer Key Values | MDN

      default: ["Enter"]

    • validKey RegExp Regular expression to check for a valid key in barcode

      Refer Key Values | MDN

      default: /^\w$/

    • devicePrefix string Prefix ID for device scoped events

      _default: null

Returns Scanner

Scanner

  • on

    Starts listening for barcode scans and add/replace the listener

    Parameters

    • eventName string Event string must be code

    • handler Function Function to call on completion of barcode scan

      Recieves the scanned code of the last input as parametes

  • off

    Stop listening for barcode scans and remove the listener

🌐 Using on web

Please if you are on browser use simple-barcode-scanner

If you want the multi-device update use my fork @denyncrawford/simple-barcode-scanner

👥 Credits

Developer: denyncrawford

This idea couln't be possible without simple-barcode-scanner, thanks.

🏗️ Contributing

  1. Create an issue related to the problem or idea and check if it is viable
  2. Fork it :D
  3. Create a new branch with your changes.
  4. Make a PR.

📜 License

MIT License

Copyright (c) 2020 Miguel Rangel

See full licese