# react-native-honeywell-scanner-v2

> Bridge to use the Honeywell scanner

Latest version **1.1.6** (published 2022-10-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-native-honeywell-scanner-v2
pnpm add react-native-honeywell-scanner-v2
yarn add react-native-honeywell-scanner-v2
bun add react-native-honeywell-scanner-v2
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.6 |
| Published | 2022-10-07 |
| First published | 2021-02-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 576.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 14 |
| Author | AMI3GO Ltd |
| Maintainers | zxynk |
| Keywords | react-native, honeywell |

## Links

- npm: https://www.npmjs.com/package/react-native-honeywell-scanner-v2
- Repository: https://github.com/AMI3GOLtd/react-native-honeywell-scanner
- Homepage: https://github.com/AMI3GOLtd/react-native-honeywell-scanner#readme
- Issues: https://github.com/AMI3GOLtd/react-native-honeywell-scanner/issues
- npm.io page: https://npm.io/package/react-native-honeywell-scanner-v2

## Recent versions

- 1.1.6 (latest) — 2022-10-07
- 1.1.5 — 2022-10-07
- 1.1.4 — 2022-10-06
- 1.1.3 — 2022-10-06
- 1.1.2 — 2022-10-05
- 1.1.1 — 2022-10-05
- 1.1.0 — 2022-10-03
- 1.0.2 — 2021-12-08
- 1.0.1 — 2021-12-07
- 1.0.0 — 2021-12-07
- 0.0.4 — 2021-06-02
- 0.0.3 — 2021-06-02
- 0.0.2 — 2021-06-02
- 0.0.1 — 2021-02-25

## README

# react-native-honeywell-scanner-v2

This module is fork of react-native-honeywell-scanner.

## Getting started

`$ npm install react-native-honeywell-scanner-v2 --save`

## Usage
```javascript
import HoneywellScanner from 'react-native-honeywell-scanner-v2';

...

useEffect(() => {
        if( HoneywellScanner.isCompatible ) {
            HoneywellScanner.startReader().then((claimed) => {
                console.log(claimed ? 'Barcode reader is claimed' : 'Barcode reader is busy');
                HoneywellScanner.onBarcodeReadSuccess(event => {
                    console.log('Received data', event.data);
                });

            });


            return(
                () => {
                    HoneywellScanner.stopReader().then(() => {
                        console.log("Freedom!!");
                        HoneywellScanner.offBarcodeReadSuccess();
                    });
                }
            )
        }
    }, []);
```

---
_Source: https://npm.io/package/react-native-honeywell-scanner-v2 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
