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

qrcode-generator-es6

v1.1.4

Published

ES6 QR Code generation module with colors and logos

Downloads

548

Readme

Table of Contents

qrcode-generator-es6

How to use:

First run:

npm install --save qrcode-generator-es6

Then use it in your code like:

import qrcode from './qrcode.js';

const qr = new qrcode(0, 'H');
qr.addData('This is my data');
qr.make();
my_element.innerHTML = qr.createSvgTag({});

qrcode

Displays a QR code. Set the code data with addData and, call make and then call createSvgTag or createImgTag.

See gallery.html for an example.

Parameters

  • typeNumber integer The minimum QR code type number from 1 to 40. Using 0 allows any QR code type number.
  • errorCorrectionLevel String 'L','M','Q','H'

isDark

Parameters

  • row
  • col

Returns boolean true if the module at row, col is dark.

getModuleCount

Returns integer The module count in one dimension of the QR code. The total number of modules is the square of this value.

make

Call this when done adding data before getting the generated QR code image.

createSvgTag

Parameters

  • args Object
    • args.drawCell function? A callback with arguments column, row, x, y to draw a cell. x, y are the coordinates to draw it at. c, y are the QR code module indexes. Returns the svg element child string for the cell.
    • args.cellColor function? A callback which returns the color for the cell. By default, a function that returns black. Unused if drawCell is provided.
    • args.margin integer? The margin to draw around the QR code, by number of cells.
    • args.obstruction Object? An image to place in the center of the QR code.
      • args.obstruction.width integer Width of the obstruction as a percentage of QR code width.
      • args.obstruction.height integer Height of the obstruction as a percentage of QR code height.
      • args.obstruction.path String The path of the obstruction image.
    • args.cellSize

Returns String An svg tag as a string.

createImgTag

Parameters

  • cellSize integer The size of a module in pixels.
  • margin integer The margin to draw around the QR code in pixels.

Returns String An img tag as a string.

stringToBytesFuncs

stringToBytes

QRMode

QRErrorCorrectionLevel

QRMaskPattern