headless-qr

1.0.3 • Public • Published

headless-qr

A simple, modern QR code generator. Adapted from https://github.com/kazuhikoarase/qrcode-generator but without all the junk that was necessary 10 years ago.

Usage

import { qr } from 'headless-qr';

// generate an n x n array of booleans,
// where `true` is a dark pixel
const modules = qr('https://example.com');

// specify version and error correction
const modules = qr('https://example.com', {
	version: 40, // 1 - 40, will select the best version if unspecified
	correction: 'Q' // L, M, Q or H
});

Readme

Keywords

none

Package Sidebar

Install

npm i headless-qr

Weekly Downloads

628

Version

1.0.3

License

none

Unpacked Size

26.3 kB

Total Files

6

Last publish

Collaborators

  • rich_harris