
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
vue-quaggajs
Advanced tools
A Vue.js component, accessing the device camera and allowing users to read barcodes, within the browser
quaggajs 's wrapper for Vue.js
npm i vue-quaggajs
<template>
<div>
<v-quagga :onDetected="logIt" :readerSize="readerSize" :readerType="['ean_reader']"></v-quagga>
</div>
</template>
<script>
import VueQuagga from 'vue-quaggajs'
export default {
name: 'VueBarcodeTest',
data () {
return {
readerSize: {
width: 640,
height: 480
},
detecteds: []
}
},
components: {
QuaggaScanner
},
methods: {
logIt (data) {
console.log('detected', data)
}
}
}
</script>
onDetected
: function(result)Reference: Quagga.onDetected(callback)
default function:
function (result) {
console.log('detected: ', result);
}
onProcessed
: function(result)Reference: Quagga.onProcessed(callback)
default function:
function (result) {
let drawingCtx = Quagga.canvas.ctx.overlay,
drawingCanvas = Quagga.canvas.dom.overlay;
if (result) {
if (result.boxes) {
drawingCtx.clearRect(0, 0, parseInt(drawingCanvas.getAttribute("width")), parseInt(drawingCanvas.getAttribute("height")));
result.boxes.filter(function (box) {
return box !== result.box;
}).forEach(function (box) {
Quagga.ImageDebug.drawPath(box, {x: 0, y: 1}, drawingCtx, {color: "green", lineWidth: 2});
});
}
if (result.box) {
Quagga.ImageDebug.drawPath(result.box, {x: 0, y: 1}, drawingCtx, {color: "#00F", lineWidth: 2});
}
if (result.codeResult && result.codeResult.code) {
Quagga.ImageDebug.drawPath(result.line, {x: 'x', y: 'y'}, drawingCtx, {color: 'red', lineWidth: 3});
}
}
},
Set reading barcode type.
Reference: https://github.com/serratus/quaggaJS#decoder
default: ['code_128_reader']
Set reader size. it affects size.
default:
{
width: 640,
height: 480,
}
FAQs
A Vue.js component, accessing the device camera and allowing users to read barcodes, within the browser
The npm package vue-quaggajs receives a total of 169 weekly downloads. As such, vue-quaggajs popularity was classified as not popular.
We found that vue-quaggajs 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
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.