🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@yudiel/react-qr-scanner

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yudiel/react-qr-scanner

A library to scan QR codes in React.

2.3.1
latest
Source
npm
Version published
Weekly downloads
55K
11.68%
Maintainers
1
Weekly downloads
 
Created
Source

Features

  • Scan 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 { Scanner } from '@yudiel/react-qr-scanner';

const App = () => {
    return <Scanner onScan={(result) => console.log(result)} />;
};
  • There is also a hook to get the available devices useDevices.

Supported Formats

1D Barcodes2D Barcodes
CodabarAztec
Code 39Data Matrix
Code 93Matrix Codes
Code 128Maxi Code
DatabarMicro QR Code
Databar ExpandedPDF 417
Dx Film EdgeQR Code
EAN 8rMQR Code
EAN 13
ITF
Linear Codes
UPC A
UPC E

Scanner Props

PropTypeRequiredDescription
onScan(detectedCodes: IDetectedBarcode[]) => voidYesCallback function that is called when one or more barcodes are detected.
onError(error: unknown) => voidNoCallback function that is called when an error occurs while mounting the camera.
constraintsMediaTrackConstraintsNoOptional media track constraints to apply to the video stream.
formatsBarcodeFormat[]NoList of barcode formats to detect.
pausedbooleanNoIf true, scanning is paused.
childrenReactNodeNoOptional children to render inside the scanner component.
componentsIScannerComponentsNoCustom components to use within the scanner.
stylesIScannerStylesNoCustom styles to apply to the scanner and its elements.
classNamesIScannerClassNamesNoCustom classNames to apply to the scanner and its elements.
scanDelaynumberNoDelay in milliseconds between scans.
allowMultiplebooleanNoIf true, ignore same barcode being scanned.
soundboolean or base64stringNoIf true, default sound will be play. You are able to set a Base64 to use a custom sound.

Limitations

  • Due to browser implementations, the camera can only be accessed over https or localhost.
  • Beep sound in iOS will only work after user interaction.
  • Server-side rendering won't work, so only require the component when rendering in a browser environment.

Types

BarcodeFormat

'aztec' |
'code_128' |
'code_39' |
'code_93' |
'codabar' |
'databar' |
'databar_expanded' |
'data_matrix' |
'dx_film_edge' |
'ean_13' |
'ean_8' |
'itf' |
'maxi_code' |
'micro_qr_code' |
'pdf417' |
'qr_code' |
'rm_qr_code' |
'upc_a' |
'upc_e' |
'linear_codes' |
'matrix_codes' |
'unknown';

IDetectedBarcode

export interface IDetectedBarcode {
    boundingBox: IBoundingBox;
    cornerPoints: IPoint[];
    format: string;
    rawValue: string;
}

IScannerComponents

export interface IScannerComponents {
    tracker?: TrackFunction;
    onOff?: boolean;
    torch?: boolean;
    zoom?: boolean;
    finder?: boolean;
}

IScannerStyles

export interface IScannerStyles {
    container?: CSSProperties;
    video?: CSSProperties;
    finderBorder?: number;
}

Keywords

react

FAQs

Package last updated on 06 May 2025

Did you know?

Socket

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