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.
@wypratama/react-qr
Advanced tools
A React component library for reading QR codes using the device's camera
@wypratama/react-qr
is a React component library for scanning QR codes using the device's camera. This library leverages the jsQR
library to decode QR codes and provides an easy-to-use React component for embedding a QR code reader into your application.
npm install @wypratama/react-qr
or
yarn add @wypratama/react-qr
Import the QRReader
component from the library and it's style, and use it in your React component:
import React from 'react';
import QRReader from '@wypratama/react-qr';
import '@wypratama/react-qr/dist/style.css';
const App = () => {
const handleResult = (result) => {
console.log('QR code data:', result);
};
return (
<div>
<h1>Scan a QR code</h1>
<QRReader onResult={handleResult} />
</div>
);
};
export default App;
Prop | Type | Description | Default |
---|---|---|---|
onResult | (result: string) => void | Callback function that will be called with the decoded data when a QR code is scanned. | Required |
scanDelay | number | Delay (in ms) between each scan attempt. A value of 0 will scan as fast as possible. | 0 |
width | string | Width of the QR reader component. Use any valid CSS value (e.g., '100%', '400px'). | '100%' |
style | React.CSSProperties | Optional custom styles to apply to the QR reader component. | {} |
children | ReactNode | Optional children to render inside the QR reader component. | - |
useFrame | boolean | If set to true , the QR reader will render children inside a default frame. If set to false , it will not. | true |
You can pass custom children and set useFrame
to false
if you want to customize the appearance of the QR reader:
import React from 'react';
import QRReader from '@wypratama/react-qr';
const CustomFrame = () => (
<div className='custom-frame'>{/* Your custom frame markup */}</div>
);
const App = () => {
const handleResult = (result) => {
console.log('QR code data:', result);
};
return (
<div>
<h1>Scan a QR code</h1>
<QRReader onResult={handleResult} useFrame={false}>
<CustomFrame />
</QRReader>
</div>
);
};
export default App;
MIT
FAQs
A React component library for reading QR codes using the device's camera
The npm package @wypratama/react-qr receives a total of 13 weekly downloads. As such, @wypratama/react-qr popularity was classified as not popular.
We found that @wypratama/react-qr 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.
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.