browser
browser copied to clipboard
ZXing for JS's browser layer with decoding implementations for browser.
``` (async() => { await ZXingBrowser.BrowserQRCodeReader.decodeFromVideoDevice(deviceId, 'my_video_element', (result, error, controls) => { if (result) { console.log(result); } if(error) { console.log(error); controls.stop(); } }); console.log('after start'); })(); ``` Results in this:...
Hello, I am using this library to implement a QR Code Scanner on a web page. And I have encountered strange behavior on MacOS and iOS browsers. Method `BrowserCodeReader.listVideoInputDevices()` does...
I'm using BrowserQRCodeReader and i try to scan a QrCode with just a url. I have this message when i'm scanning on iPhone. It's okay on Android. ...
Bumps [terser](https://github.com/terser/terser) from 5.10.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) Commits c6bdaca Version 2.6.4 8870da9 Update built files 4df6754 update changelog 8f7f903...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Hi, I'm working on a React project and I've been struggling trying to make the reader work. I'm uploading a file on an async function and created a new instance...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.7 to 1.14.8. Commits 3d81dc3 Release version 1.14.8 of the npm package. 62e546a Drop confidential headers across schemes. See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)...
Bumps [vm2](https://github.com/patriksimek/vm2) from 3.9.5 to 3.9.7. Release notes Sourced from vm2's releases. 3.9.7 Fixes b7f794dfb3034d2173b9da957f48425adc4081c3: Custom Resolver is allowed to return undefined 568934f58cf72339a3dd2a2c578cc28550c19d27: Fixed some bugs introduced in v3.9.6 b6581b4a9cf9a4706b2967fceb5930a3de4d2ac7:...
If we quickly reset the code scanner before a video stream is fetched, the camera tracks are not getting stopped. Steps to reproduce: 1. Have an icon to open popup...