0.3.8 • Published 2 years ago

react-zxing-scanner v0.3.8

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

Performant ReactJS Scanner barcode.

Version Downloads

Installation

yarn add react-zxing-scanner

or

npm i react-zxing-scanner

MacOS recommend

bun add react-zxing-scanner

Usage

Here is a quick example

import React from "react";
import  ReactZxingScanner  from "react-zxing-scanner";
import { Exception, Result } from "@zxing/library";

export const App = () => {
  return (
    <>
      <ReactZxingScanner 
        onUpdate={(res: Result) => {
            console.log('data', res.toString())
        }}
        onError={(err: Exception) => {
            console.error('err', err.toString())
        }}
        
      />
    </>
  );
};
0.3.8

2 years ago

0.3.7

2 years ago

0.3.6

2 years ago

0.3.5

2 years ago

0.3.4

2 years ago

0.3.3

2 years ago

0.3.2

2 years ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.9

2 years ago

0.2.8

2 years ago

0.2.7

2 years ago

0.2.6

2 years ago

0.2.5

2 years ago

0.2.4

2 years ago

0.2.2

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.9

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago