Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@caprado/react-barcode-scanner
Advanced tools
Checkout the Demo.
yarn add @caprado/react-barcode-scanner
npm install @caprado/react-barcode-scanner
import { Scanner } from "@caprado/react-barcode-scanner";
const App = () => {
return (
<Scanner
onResult={(text, result) => console.log(text, result)}
onError={(error) => console.log(error?.message)}
/>
);
};
useContinuousScanner
hook and implement your own UI.useDeviceList
.1D product | 1D industrial | 2D |
---|---|---|
UPC-A | Code 39 | QR Code |
UPC-E | Code 93 | Data Matrix |
EAN-8 | Code 128 | Aztec |
EAN-13 | Codabar | PDF 417 |
ITF | ||
RSS-14 | ||
RSS-Expanded |
Property | Type | Description | Required |
---|---|---|---|
onResult | (text: string, result: Result) => void | Callback function that is called with the scanned text and result. | Yes |
onError | (error: Error) => void | Optional callback function that is called when an error occurs. | No |
enabled | boolean | Optional flag to enable or disable the scanner. | No |
styles | IScannerStyles | Optional styles to apply to the scanner and its components. | No |
options | IScannerOptions | Optional configuration options for the browser scanner. | No |
components | IScannerComponents | Optional components to include or exclude in the scanner. | No |
Property | Type | Description |
---|---|---|
name | string | The name of the error. |
message | string | The error message. |
stack | string | Optional stack trace of the error. |
Property | Type | Description | Required |
---|---|---|---|
container | CSSProperties | Optional styles for the scanner container. | No |
video | CSSProperties | Optional styles for the video element. | No |
finderBorder | number | Optional border size for the finder. | No |
Property | Type | Description | Required | Default |
---|---|---|---|---|
deviceId | string | Optional ID of the device to use for scanning. | No | undefined |
hints | Map< DecodeHintType, any> | Optional hints to fine-tune scanning. | No | undefined |
constraints | DecodeHintType | Optional constraints for the media track. | No | {...} |
delayBetweenScanSuccess | number | Optional delay between successful scans. | No | 500 |
delayBetweenScanAttempts | number | Optional delay between scan attempts. | No | 500 |
tryPlayVideoTimeout | number | Optional timeout for trying to play the video. | No | 500 |
Property | Type | Description | Required | Default |
---|---|---|---|---|
audio | boolean | Optional inclusion of an audio component. | No | true |
torch | boolean | Optional inclusion of a torch component. | No | true |
count | boolean | Optional inclusion of a count component. | No | false |
onOff | boolean | Optional inclusion of an on/off component. | No | false |
tracker | boolean | Optional inclusion of a tracker component. | No | false |
FAQs
A library to scan qr codes in react.
We found that @caprado/react-barcode-scanner demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.