
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
react-webcam-qr-scanner
Advanced tools
A humble implementation of a real-time QR-code scanner using WebRTC
An implementation of a real-time QR-code scanner using WebRTC
Using NPM:
npm install react-webcam-qr-scanner
Using Yarn:
yarn add react-webcam-qr-scanner
Here is an example of a simple React component that utilizes react-webcam-qr-scanner
import React from "react";
import Scanner from "react-webcam-qr-scanner";
const MyAwesomeComponent = (props) => {
const handleDecode = (result) => {
console.log(result);
}
const handleScannerLoad = (mode) => {
console.log(mode);
}
return (
<Scanner
className="some-classname"
onDecode={handleDecode}
onScannerLoad={handleScannerLoad}
constraints={{
audio: false,
video: {
facingMode: "environment"
}
}}
captureSize={{ width: 1280, height: 720 }}
/>
);
}
Most of the props are identical to the React <video> tag (e.g. classname, name, id, event handlers etc). However, some of them define the decoder behaviour and can be set as follows:
Property | Type | Meaning |
---|---|---|
onDecode | function | a callback which fires when a QR-code is successfully decoded |
onScannerLoad | function | a callback which fires when QR-decoding script is successfully loaded |
constraints | object | a MediaStreamConstraints object |
captureSize | object { width: number, height: number } | Represents the size of the frame area sensitive for QR-detection |
This package is licensed under MIT
I'm also open to new suggestions for improving this package. Contacts: simpleman383@gmail.com
FAQs
A humble implementation of a real-time QR-code scanner using WebRTC
The npm package react-webcam-qr-scanner receives a total of 111 weekly downloads. As such, react-webcam-qr-scanner popularity was classified as not popular.
We found that react-webcam-qr-scanner demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.