Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
@justinribeiro/barcode-reader
Advanced tools
A web component that uses the Shape Detection API and module scripts in DedicatedWorker to detect barcodes.
A web component that reads barcodes via the Shape Detection API via a Web Worker.
Please note, this is not production ready. It's not polyfilled, it relies on an experimental platform feature for the Web Worker, and generally I've just been toying with it in various Chrome builds for quite some time.
Use at your own peril! 🐉🔥
If you're looking for a more complete PWA example of using barcodes on the web, I highly recommend Paul Kinlans' QR Snapper as well as his blog.
This web component is built with Polymer 3 and ES modules in mind and is available on NPM:
Install barcode-reader:
npm i @justinribeiro/barcode-reader
# or
yarn add @justinribeiro/barcode-reader
After install, import into your project:
import 'barcode-reader';
Finally, use as required:
<barcode-reader></barcode-reader>
<script>
customElements.whenDefined('barcode-reader').then(() => {
const barcodeReader = document.querySelector('barcode-reader');
// start the camera stream
// always looks for
// facingMode: {
// exact: 'environment',
// }
barcodeReader.start();
// component returns a custom event with results
document.addEventListener('barcodes-found', (event) => {
console.log(event.detail.barcodes);
// if you want to stop streaming, ala, I'm hiding you now
barcodeReader.stop();
}, false);
});
</script>
FAQs
A web component that uses the Shape Detection API and module scripts in DedicatedWorker to detect barcodes.
The npm package @justinribeiro/barcode-reader receives a total of 2 weekly downloads. As such, @justinribeiro/barcode-reader popularity was classified as not popular.
We found that @justinribeiro/barcode-reader 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
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.