2.0.0 • Published 5 years ago

dryrain-barcode-scan-listener v2.0.0

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

Dryrain Technologies Barcode Scan Listener

Build Status

Listen for scan events inside Dryrain Technologies' Enterprise Browser iOS app. API documentation is not publicly available. See http://dryraintechnologies.com.

Installation

To install via npm:

npm install dryrain-barcode-scan-listener

To install via yarn:

yarn add dryrain-barcode-scan-listener

Usage

import createDryrainBarcodeScanListener from 'dryrain-barcode-scan-listener';

// Now, scanning a barcode 'L%123abc' will log 'L%123abc'
const removeScanListener = createDryrainBarcodeScanListener({
  onScan: (barcode) => console.log(barcode),
});

// To remove the scan listener:
removeScanListener();