
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
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" :readerTypes="['ean_reader']"></v-quagga>
</div>
</template>
<script>
import Vue from 'vue'
import VueQuagga from 'vue-quaggajs';
// register component 'v-quagga'
Vue.use(VueQuagga);
export default {
name: 'VueBarcodeTest',
data () {
return {
readerSize: {
width: 640,
height: 480
},
detecteds: []
}
},
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,
}
Set aspect ratio. it affects aspect ratio.
default:
{
min: 1,
max: 2,
}
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 182 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.