
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
react-simple-qr-code-scanner
Advanced tools
This is a simple qr-code scanner component for react. Check out a simple demo here!
A step by step series guide to setup this component.
npm create vite@latest my-qr-code-scanner-application -- --template react
npm create vite@latest my-qr-code-scanner-application -- --template react-ts
npm i react-simple-qr-code-scanner
The code snippet below demonstrates the basic usage of the QR code scanner component:
import { QrCodeScanner } from "react-simple-qr-code-scanner";
function App() {
return (
<QrCodeScanner
onResult={(result, rawResult) => {
console.log(result);
}}
Errors={(error) => {
console.log(error);
}},
facingMode={"environment"} // Or "user"
/>
);
}
The code snippet below demonstrates how to customize the styling of the QR code scanner component:
import { QrCodeScanner } from "react-simple-qr-code-scanner";
const App = () => (
<div style={{ width: "50vw" }}>
<QrCodeScanner
onResult={(result) => {
console.log(result);
}}
>
{(videoElement) => (
<div
style={{
borderColor: "rgb(147 197 253)",
borderWidth: "4px",
width: "100%",
}}
>
<video ref={videoElement} style={{ width: "100%", height: "100%" }} />
</div>
)}
</QrCodeScanner>
</div>
);
Currently, the component only supports Zod as a validator (or custom validators) for QR code data. See the example below:
import { QrCodeScanner } from "react-simple-qr-code-scanner";
import { ZodQrCodeDataValidator } from "react-simple-qr-code-scanner/validators";
import { z } from "zod";
const QrCodeData = z.object({
foo: z.string(),
bar: z.number().min(500, "bar must be greater than 500"),
});
function App() {
return (
<>
<QrCodeScanner
validate={(data) => ZodQrCodeDataValidator(data, QrCodeData)}
onResult={(result) => {
console.log(result); // Result will be of the type {foo: string; bar: number;}
}}
onError={(error) => {
console.log(error); // Displays an error message if 'bar' is less than 500
}}
/>
</>
);
}
In this example, custom validation is performed on the QR code data:
import { QrCodeScanner } from "react-simple-qr-code-scanner";
type QrCodeData = {
foo: string;
bar: number;
};
function App() {
return (
<>
<QrCodeScanner
validate={(data) => {
if (!data || data == null || typeof data != "object")
throw new Error("data is required");
if (
!Object.prototype.hasOwnProperty.call(data, "foo") ||
!("foo" in data) ||
data.foo == null ||
typeof data.foo != "string"
)
throw new Error("foo is required");
if (
!Object.prototype.hasOwnProperty.call(data, "bar") ||
!("bar" in data) ||
data.bar == null ||
typeof data.bar != "number"
)
throw new Error("bar is required");
return { foo: data.foo, bar: data.bar };
}}
onResult={(result) => {
console.log(result); // Result will be of type QrCodeData due to the validation defined in the 'validate' property
}}
onError={(errorScan) => {
console.log(errorScan.message); // Log the validation error messages
}}
/>
</>
);
}
Starting from version 2.0.0, the onResult function now takes two parameters. The rawResult parameter represents the original result.
Before 2.0.0:
import { QrCodeScanner } from "react-simple-qr-code-scanner";
function App() {
return (
<QrCodeScanner
onResult={(result) => {
console.log(result.getText());
}}
/>
);
}
Since Version 2.0.0:
import { QrCodeScanner } from "react-simple-qr-code-scanner";
function App() {
return (
<QrCodeScanner
onResult={(result, raw) => {
console.log(result); // Returns the text, parsing and validating it if necessary.
console.log(raw.getText()); //
}}
/>
);
}
This project is licensed under the MIT License License. See the LICENSE file for more details.
FAQs
A super simple qr code scanner
The npm package react-simple-qr-code-scanner receives a total of 67 weekly downloads. As such, react-simple-qr-code-scanner popularity was classified as not popular.
We found that react-simple-qr-code-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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.