![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
browser-barcodescanner
Advanced tools
npm install browser-barcodescanner
yarn add browser-barcodescanner
import { BrowserBarcodeScanner } from 'browser-barcodescanner'
const scanButton = document.querySelector('#scan')
const fileInput = document.querySelector('#file')
scanButton.addEventListener('click', () => {
const file = fileInput.files?.[0]
if (!file) return
BrowserBarcodeScanner(['ean_13'], file, result => {
// Do something with result.res (The barcode value)
// Do Something with result.corner (The corner points of the barcode)
// Do Something with result.box (The bounding box of the barcode)
})
})
import { BrowserBarcodeScanner } from 'browser-barcodescanner'
const scanButton = document.querySelector('#scan')
const video = document.querySelector('#video')
scanButton.addEventListener('click', () => {
navigator.mediaDevices.getUserMedia({ video: true }).then(stream => {
video.srcObject = stream
})
BrowserBarcodeScanner(['ean_13'], video, result => {
// Do something with result.res (The barcode value)
// Do Something with result.corner (The corner points of the barcode)
// Do Something with result.box (The bounding box of the barcode)
})
})
See https://developer.mozilla.org/en-US/docs/Web/API/BarcodeDetector/detect for more information about the result.
declare global {
interface Window {
BarcodeDetector: any
}
}
export declare function BrowserBarcodeScanner(
formats: string[],
object: File | HTMLVideoElement | HTMLImageElement | HTMLCanvasElement | null,
callback: (result: { res: string }) => void
): Promise<void>
Contributing is always welcome!
I cannot maintain this project alone, so please feel free to open issues and pull requests.
If you are going to contribute, follow these steps
git clone https://github.com/HyunseungLee-Travis/browser-barcodescanner.git
npm install
cd playground
yarn dev
In another terminal
lt --port 5173
Then, open the url in your mobile phone as the api is only supported on mobile devices.
FAQs
A browser API based barcode scanner
The npm package browser-barcodescanner receives a total of 0 weekly downloads. As such, browser-barcodescanner popularity was classified as not popular.
We found that browser-barcodescanner 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.