Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
vue-qrcode-reader
Advanced tools
A Vue.js component, accessing the device camera and allowing users to read QR-Codes, within the browser
A set of Vue.js components, allowing you to detect and decode QR codes, without leaving the browser.
QrcodeStream
accesses the device camera and continuously scans the incoming frames.QrcodeDropZone
renders to an empty region where you can drag-and-drop images to be decoded.QrcodeCapture
is a classic file upload field, instantly scanning all files you select.All components are responsive. What doesn't fit your layout can be customized.
You also get simple elegant APIs:
<qrcode-stream @decode="onDecode"></qrcode-stream>
methods: {
onDecode (decodedString) {
// ...
}
}
QrcodeStream
This component fundamentally depends on the Stream API.
No | Yes | Yes | Yes | 11+ |
QrcodeDropZone
and QrcodeCapture
The newest API these components depend on is the FileReader API.
10+ | Yes | Yes | Yes | Yes |
npm install --save vue-qrcode-reader
or with Yarn:
yarn add vue-qrcode-reader
You can either import the components independantly and register them in another components scope:
import { QrcodeStream, QrcodeDropZone, QrcodeCapture } from 'vue-qrcode-reader'
Vue.component('my-component', {
components: {
QrcodeStream,
QrcodeDropZone,
QrcodeCapture
},
// ...
))
Or alternatively register all of them globally right away:
import Vue from 'vue'
import VueQrcodeReader from 'vue-qrcode-reader'
Vue.use(VueQrcodeReader)
⚠️ A css file is included when importing the package. You may have to setup your bundler to embed the css in your page.
All the examples on the demo page utilize single-file components. To use them in your project you need a build tool like webpack. Check out #35 for a simpler example you can use right in the browser.
Besides Vue you need to include the following CSS and JS file:
<link href="
vue-qrcode-reader.css" rel="stylesheet">
<script src="
vue-qrcode-reader.browser.js"></script>
The global variable window.VueQrcodeReader
should now be available.
All components should be automatically registered globally. If not, you can do it like this:
Vue.use(VueQrcodeReader)
You can also register specific components locally, in one of your components:
Vue.component('my-component', {
components: {
'qrcode-stream': VueQrcodeReader.QrcodeStream,
'qrcode-drop-zone': VueQrcodeReader.QrcodeDropZone,
'qrcode-capture': VueQrcodeReader.QrcodeCapture
},
// ...
)
FAQs
A set of Vue.js components for detecting and decoding QR codes.
The npm package vue-qrcode-reader receives a total of 15,004 weekly downloads. As such, vue-qrcode-reader popularity was classified as popular.
We found that vue-qrcode-reader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.