npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

barcode-detector-api-polyfill

v1.0.13

Published

A polyfill for the BarcodeDetector API using the ZXing library

Downloads

126

Readme

BarcodeDetector API Polyfill

The problem

The web BarcodeDetector API is amazing because it's very easy to use and it works surprisingly well even with detecting multiple barcodes in a single image. However there is a problem with this API - its current browser support (or the lack of such, to be more precise). The current browser support can be summarized like this:

  • Mobile
    • Android - only Chromium-based browsers
    • iOS - N/A
  • Desktop
    • Windows - N/A
    • Linux - N/A
    • macOS - only Chromium-based browsers (WTF?)

As you can see there is a huge gap in the support across mobile and desktop platforms and this project is here to fill it.

The solution

This project implements a polyfill for the BarcodeDetector API that follows the W3C specification with the help of the ZXing library and its browser layer. ZXing ("zebra crossing") is a popular open-source library that works with 1D and 2D barcode formats. It was originally written in Java but was eventually ported to many different languages including JavaScript and TypeScript.

How to install?

Standalone browser script

Download the latest build and use it as a regular JS file in a <script> tag. This build takes care of adding the missing BarcodeDetector object to the global scope and you are able to use it the same way as the real BarcodeDetector API.

<script src="barcode-detector-polyfill.min.js"></script>

NPM module

npm install barcode-detector-api-polyfill

Include node_modules/barcode-detector-api-polyfill/browser/barcode-detector-polyfill.min.js to your script imports if you use a bundler.

If you just want to have the detector and handle the polyfilling by yourself you can simply import the BarcodeDetector class in your code.

import { BarcodeDetector, WindowWithBarcodeDetector } from 'barcode-detector-api-polyfill';

if (!('BarcodeDetector' in window)) {
  (window as WindowWithBarcodeDetector).BarcodeDetector = BarcodeDetector;
}

A valid use case for this could be if you use a bundler and you want to lazy load the polyfill only when it's needed.

Important notes and known drawbacks

Consistency with the native API

The ZXing reader detects only a single barcode from the image source. Because of that, you can never have more than 1 barcode result.

Barcode results from ZXing don't always include 4 corner points. For example, for 1-dimensional barcodes it returns only 2 points, so you end up with coordinates for a line rather than a quadrangle. This might be an issue if you want to use these coordinates in your app to draw an outline of the detected barcode on a canvas.

Reliability

Although for the most part ZXing works well, it's not as reliable as the native BarcodeDetector API. It might struggle in situations like:

  • the barcode is not focused well
  • the barcode is at a very narrow angle
  • the image is not clean enough

Performance

Although it might be obvious, the image recognition logic is now handled entirely in the JavaScript code, therefore you can't expect performance as good as the native API. If you are going to use the detector with static images, you don't need to worry about that, but if you want to use the detector continuously on a streaming video, you can potentially expect performance issues.

NOTE: I'm open for duscussions on weather we should use a web worker implementation to make detection process smoother!

Bundle size

Due to the presence of all ZXing decoders, the minified JS build of the polyfill is ~430 kb (before gzip compression). This could be a deal breaker for low bandwidth connections and Core Web Vitals scores. You can potentially work your way around this by lazy loading the polyfill which involves additional effort.

How it's done?

This section here is for the curious ones who are interested in the development itself (and maybe want to contribute too). The polyfill is basically a class that implements the specified BarcodeDetector interface, and the MDN documentation has been very helpful during the development. The class uses a ZXing multi-format reader internally and initializes it with a specific list of formats (if such are passed to the constructor). The class has the public static method getSupportedFormats() and the instance method detect(), both of which can be used the same way as the native API.

The implementation of the detect() method was a challenge because unlike the BarcodeDetector API, ZXing doesn't have this silver bullet detection method that accepts all kinds of image sources but rather has different methods that decode from different sources (canvas, video, image, stream, etc.). Because of this, the polyfill implementation conditionally calls different methods for one-time detection based on the type of the image source.

Another challenge was to align the differences between the barcode formats of ZXing and the BarcodeDetector API. The barcode formats in ZXing are presented as a numeric enum while the BarcodeDetector API accepts (and returns) strings. To make the methods of the polyfill work as expected, two special map-like objects had to be created to make it possible to map barcode formats back and forth.

For the browser build we use esbuild due its many advantages compared to webpack.