fixed-mount-barcode-scanner

0.0.5 • Public • Published

fixed-mount-barcode-scanner

An npm module to easily obtain the barcode read by a fixed mount usb barcode scanner of the company Newland (c).

This is designed to be integrated on a frontend, where you expect a barcode scanner input.

Install the module

Import it to your project with the following command:

npm install fixed-mount-barcode-scanner

Or if you prefer yarn to npm install:

yarn add fixed-mount-barcode-scanner

Integrate it in your project

It can be integrated in your code like this:

import bscanner from 'fixed-mount-barcode-scanner';
 
// This will start listening to the 'keydown' event of the document object.
bscanner.bindKeydown(); 
 
// This defines the callback 
const onBarcode = (code) => {
  console.log('Got a barcode!! ' + code);
  // Enter your code here to react to a barcode scan event.
};
 
// With this line, your callback will be invoked every time a barcode has been scanned
bscanner.setOnBarcode(onBarcode);

Credits

Developed by F. Javier R. Donado for netvico GmbH

Package Sidebar

Install

npm i fixed-mount-barcode-scanner

Weekly Downloads

2

Version

0.0.5

License

MIT

Last publish

Collaborators

  • jdonado