Socket
Socket
Sign inDemoInstall

temp-qr-bar-scanner

Package Overview
Dependencies
8
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    temp-qr-bar-scanner

A library to scan qr codes in react.


Version published
Weekly downloads
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Features

  • Scan Qr Codes using a smartphone camera or webcam.

Demo

Checkout the Demo.

Install

yarn add @yudiel/react-qr-scanner

npm install @yudiel/react-qr-scanner

Usage

import {QrScanner} from '@yudiel/react-qr-scanner';

const App = () => {
  return (
      <QrScanner
          onDecode={(result) => console.log(result)}
          onError={(error) => console.log(error?.message)}
      />
  );
}

Supported Formats

1D product1D industrial2D
UPC-ACode 39QR Code
EAN-8Code 128Data Matrix
EAN-13RSS-14Aztec
PDF 417

Limitations

  • Due to browser implementations the camera can only be accessed over https or localhost.
  • Server side rendering won't work so only require the component when rendering in a browser environment.

API

PropertiesTypesDefault ValueDescription
constraintsMediaTrackConstraints{ facingMode: 'environment' }Specify which camera should be used (if available).
containerStyleobjectnoneStyle object for the container element.
videoStyleobjectnoneStyle object for the video element.
scanDelaynumber500The scan period for the QR hook.
videoIdstringvideoIdThe Id for the video element.
onResultfunctionnoneScan event handler for result object.
onDecodefunctionnoneScan event handler for decode value.
onErrorfunctionnoneScan event handler for error object.
ViewFindercomponentnoneViewFinder component to rendering as overlay in the video element
hideCountbooleantrueHide the scanned count as overlay in the video element

FAQs

Last updated on 06 Mar 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc