Skip to content

hegeda14/usb-barcode-scanner

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Typed usb-barcode scanner

A typed library for using USB barcode scanners in Node.js with support for Typescript.

On Linux and Mac, you have to run your application with root privileges.

Intallation

You can install this package by running the following command:

npm i usb-barcode-scanner --save

Or using yarn:

yarn add usb-barcode-scanner

Usage Typescript

You can list all devices using the following code:

import { getDevices } from 'usb-barcode-scanner';

console.log(getDevices());
import { UsbScanner } from 'usb-barcode-scanner';

let scanner = new UsbScanner({
    vendorId: 1155,
    productId: 22352
    /** You could also initialize the scanner by giving entering the path variable:
     *  path: 'IOService:/AppleACPI etc...'
    **/  
});

scanner.on('data', (data) => {
    console.log(data);
});

scanner.startScanning();

To stop scanning, you can use:

scanner.stopScanning();

Usage Vanilla JS

You can list all devices using the following code:

let getDevices = require('usb-barcode-scanner').getDevices;

console.log(getDevices());
let UsbScanner = require('usb-barcode-scanner').UsbScanner;

let scanner = new UsbScanner({
    vendorId: 1155,
    productId: 22352
});

scanner.on('data', (data) => {
    console.log(data);
});

scanner.startScanning();

To stop scanning, you can use:

scanner.stopScanning();

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 100.0%