Socket
Socket
Sign inDemoInstall

@yudiel/react-qr-scanner

Package Overview
Dependencies
10
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @yudiel/react-qr-scanner

A library to scan qr codes in react.


Version published
Maintainers
1
Created

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)}
      />
  );
}

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 29 Apr 2022

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