0.0.5 • Published 7 years ago

fixed-mount-barcode-scanner v0.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

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

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago