/use-barcode

React custom hook to read barcode from scanner

Primary LanguageJavaScript

use-barcode

Installation

yarn add use-barcode
# or
npm install use-barcode

Usage

import useBarcode from 'react-barcode';

const barcode = useBarcode();

useEffect(() => {
  if (barcode) {
    // do your own logic
  }
}, [barcode]);

The above useEffect will be performed after scanned anywhere on the page, except for input, textarea and any elements with contenteditable attribute.

Refer to Demo.js for more details.

Reference