Skip to content
This repository has been archived by the owner on May 25, 2020. It is now read-only.

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

License

Notifications You must be signed in to change notification settings

mikerovers/usb-barcode-scanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 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

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published