This is an library that allows you to use a Honeywell, Zebra or DataLogic (and perhaps other manufacturers) barcode scanners in HID POS mode using WebHID.
This library is part of @point-of-sale, a collection of libraries for interfacing browsers and Node with Point of Sale devices such as receipt printers, barcode scanners and customer facing displays.
By default most barcode scanners emulate a keyboard meaning all numbers and letters of a barcode will be individually 'typed' by the barscanner. This means you either have to focus an input field before scanning, or you have to use global keyboard events and build some algorithm that can seperate out digits from barcodes from other digits that are being typed on the keyboard.
This is error-prone and slow, but some barcode scanners can also be used in HID mode.
Depending on the model and manufacturer you might first need to scan a special configuration barcode to enable this mode. See the documentation of your barcode scanner for more information.
This library uses WebHID to connect to the scanner and set the scanner in HID mode, which allows us to receive the barcodes in one event.
Load the webhid-barcode-scanner.umd.js
file in the browser and instantiate a WebHIDBarcodeScanner
object.
<script src='webhid-barcode-scanner.umd.js'></script>
<script>
const barcodeScanner = new WebHIDBarcodeScanner();
</script>
Or import the webhid-barcode-scanner.esm.js
module:
import WebHIDBarcodeScanner from 'webhid-barcode-scanner.esm.js';
const barcodeScanner = new WebHIDBarcodeScanner();
When you create the WebHidBarcodeScanner
object you can specify a number of options to help with the library with connecting to the device.
By default this library will return barcodes of every symbology. However if you want to use this library in a specific environment, such as retail, you can limit this library to only allow symbologies that are used in retail, for example:
const barcodeScanner = new WebHIDBarcodeScanner({
allowedSymbologies: [ 'ean13', 'ean8', 'upca', 'upce', 'qr-code' ]
});
This will allow all EAN and UPC barcodes. But also QR-codes because the retail industry is moving to the QR code based GS Digital Links in the coming years. These digital links contain an URL and can be used by consumers to read more about the product they are buying or have bought. But it also includes the Global Trade Identification Number (GTIN) that is also used by EAN and UPC barcodes.
If we find GS1 data such as the GTIN in the scanned barcode we will automatically decode it and place it in the data property:
barcodeScanner.addEventListener('barcode', e => {
if (e.data?.gtin) {
console.log(`Found barcode with GTIN ${e.data.gtin}`);
}
});
The first time you have to manually connect to the barcode scanner by calling the connect()
function. This function must be called as the result of an user action, for example clicking a button. You cannot call this function on page load.
function handleConnectButtonClick() {
barcodeScanner.connect();
}
Subsequent times you can simply call the reconnect()
function. This will try to find any previously connected barcode scanners and will try to connect again. It is recommended to call this button on page load to prevent having to manually connect to a previously connected device.
barcodeScanner.reconnect();
If there are no barcode scanners connected that have been previously connected, this function will do nothing.
If you have multiple barcode scanners connected and want to reconnect with a specific one, you can provide an object with a vendor id and product id. You can get the vendor id and product id by listening to the connected
event and store it for later use. Unfortunately this will only work for USB HID devices.
barcodeScanner.reconnect(lastUsedDevice);
However, this library will actively look for new devices being connected. So if you connect a previously connected barcode scanner, it will immediately become available.
To find out when a barcode scanner is connected you can listen for the connected
event using the addEventListener()
function.
barcodeScanner.addEventListener('connected', device => {
console.log(`Connected to ${device.productName}`);
/* Store device for reconnecting */
lastUsedDevice = device;
});
The callback of the connected
event is passed an object with the following properties:
type
Type of the connection that is used, in this case it is alwayshid
.vendorId
In case of a USB HID barcode scanner, the USB vendor ID.productId
In case of a USB HID barcode scanner, the USB product ID.productName
The name of the barcode scanner.
To find out when a barcode scanner is disconnected you can listen for the disconnected
event using the addEventListener()
function.
barcodeScanner.addEventListener('disconnected', () => {
console.log(`Disconnected`);
});
If the barcode scanner is a supported device, but it is not in HID POS mode, the library will emit a unsupported
event. That means you need to reconfigure your scanner to change to a different connection mode. Usually you can do this by scanning a configuration barcode from the manual of your barcode scanner. The mode you need for this library is HID POS mode.
Alternatively you can configure the scanner to use HID Keyboard emulation or Serial emulation, but then you need to use KeyboardBarcodeScanner or WebSerialBarcodeScanner instead.
For Honeywell scanners you do not need to do this, they can be automatically switched over to HID POS mode.
Once connected you can use listen for the following events to receive data from the barcode scanner.
Whenever the libary detects a barcode, it will send out a barcode
event that you can listen for.
barcodeScanner.addEventListener('barcode', e => {
console.log(`Found barcode ${e.value} with symbology ${e.symbology}`);
});
The callback is passed an object with the following properties:
value
The value of the barcode as a stringdata
If the barcode contains GS1 data, such as the Global Trade Identification Number (GTIN) the data will be parsed into elements.aim
Optionally, the AIM Code ID, which is a 3 character ISO/IEC identifier generated by the decoder of a scanner and gives information about the symbology of the barcode which was scanned.symbology
Optionally a library specific identifier of the symbology.bytes
The raw bytes we've received from the scanner. Because the bytes are received into multiple HID reports, this propery is an array containingUint8Array
's for each report.
The data
property is optional, but if GS1 data is detected, it will contain an object with the following properties:
gtin
Optionally, if the GS1 elements define a GTIN, it will be listed here for quick reference.elements
An array of all the GS1 elements that the barcode contains. Each element is an object with the folowing properties;ai
: the appication identifier,label
: a human readable label andvalue
: the value of the element.
The symbology
property can be any of the following common values for 1D barcodes:
ean8
, ean13
, upca
, upce
, code39
, code93
, code128
, codabar
, interleaved-2-of-5
, straight-2-of-5
, gs1-128
, gs1-databar-omni
, gs1-databar-limited
, gs1-databar-expanded
,
Or these 2D barcodes:
qr-code
, data-matrix
, maxicode
, aztec-code
, pdf417
, pdf417-micro
,
But in some cases you might also encounter these:
code1
, code11
, code16k
, code32
, code39-tcif
, code49
, info-mail
, korea-post
, australian-post
, british-post
, canadian-post
, chinese-sensible-code
, japanese-post
, kix
, planet-code
, imbc
, postal-4i
, postnet
, china-post
, codablock-a
, codablock-f
, nec-2-of-5
, matrix-2-of-5
, msi
, anker
,plessey
,telepen
, posi-code
, channel-code
, super-code
,
A typical EAN 13 barcode would look like:
{
value: "3046920029759",
symbology: "ean13",
aim: "]E0",
data: {
gtin: "03046920029759",
elements: [{
ai: "01",
label: "GTIN",
value: "03046920029759"
}]
},
bytes: [[
0x0D, 0x5D, 0x45, 0x30, 0x33, 0x30, 0x34, 0x36, 0x39, 0x32, 0x30, 0x30,
0x32, 0x1D, 0x37, 0x35, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x45, 0x00
]]
}
This library has been created by Niels Leenheer under the MIT license. Feel free to use it in your products. The development of this library is sponsored by Salonhub.