New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-barcode-listener

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-barcode-listener

Listen for barcode scanner events in your Angular application

  • 3.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
34
decreased by-17.07%
Maintainers
4
Weekly downloads
 
Created
Source

Angular Barcode Listener

Listen for barcode scanner events in your Angular application

Build Status MIT License

Usage

npm install angular-barcode-listener
var app = angular.module('app', ['barcodeListener']);
<barcode-listener
  on-scan='ctrl.handleScan'
  prefix='P%'
  value-test='^C%'
  finish-scan-on-match='true'
  scan-duration='500'
></barcode-listener>

Configuration

  • prefix - expected prefix for scan inputs
  • onScan - callback to call after successful scan
  • scanDuration - milliseconds duration for scan to complete (defaults to 50)
  • barcodeValueTest - RegExp defining valid scan value (not including prefix).
  • finishScanOnMatch - if true, test scan value (not including prefix) match with barcodeValueTest on each character. If matched, immediately call the scanHandler with the value. This will generally make scans faster.

Bookmarklet

If you need to simulate scanning a barcode while developing and don't have a scanner handy you can paste the following code into a bookmark which will prompt you to enter some text that you want "scanned":

javascript:(function(){
  var $document = window.angular.element(document).injector().get('$document');

  var triggerKeypressEvent = function(char) {
    var event = new Event('keypress');
    event.which = char.charCodeAt(0);
    $document.triggerHandler(event);
  };

  var barcode = prompt('Text to scan');
  for (var i = 0; i < barcode.length; i++) {
    triggerKeypressEvent(barcode[i]);
  }
})();

Contributing

Please follow our Code of Conduct when contributing to this project.

$ git clone https://github.com/goodeggs/angular-barcode-listener && cd angular-barcode-listener
$ yarn
$ yarn test

Module scaffold generated by generator-goodeggs-npm.

Keywords

FAQs

Package last updated on 04 Jun 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc