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

qrsart

v0.3.1

Published

Generate QR codes with precision

Downloads

31

Readme


Benefits:

  • No dependencies
  • Optimal data segmentation
  • Labeled grid output
  • Built-in permutation logic
  • Isomorphic: Works in browser / NodeJS / Bun

Drawbacks:

  • No kanji support
  • API not final (just getting started)
  • Not perf optimized (yet)

Install

bun install qrsart

Usage

import { createQR } from 'qrsart'

let qr = createQR('HTTPS://GITHUB.COM/m4r-sh/qrsart',{
  minVersion: 2, // 1 - 40
  minEcl: 'medium', // 'low','medium','quartile','high'
  mask: 0, // 0 - 7
})

console.log(qr)

// QRCode {
//   version: 3,
//   ecl: "quartile",
//   mask: 0,
//   data: "HTTPS://GITHUB.COM/m4r-sh/qrsart",
//   size: 29,
//   bitstring: "001000...110000",
//   functional_grid: PixelGrid,
//   finder_grid: PixelGrid,
//   timing_grid: PixelGrid,
//   alignment_positions: PixelGrid,
//   alignment_grid: PixelGrid,
//   format_grid: PixelGrid,
//   version_grid: PixelGrid,
//   data_grid: PixelGrid,
//   grid: PixelGrid,
// }

To see an image generation example, check out examples

API

createQR(data, options)

Returns: QRCode

Creates a QRCode object which can be used in custom render logic

data

Type: String

The raw text to be encoded into the QR Code

options

Type: Object

  • minVersion: number (0 - 40)
  • maxVersion: number (0 - 40)
  • mask: number (0 - 8)
  • minEcl: string ('low' | 'medium' | 'quartile' | 'high')

PixelGrid(w,h)

Helper class for 2D matrix of pixels

  • .setPixel(x,y,v)
  • .getPixel(x,y)
  • .usedPixel(x,y)
  • PixelGrid.combine(...grids)

QRCode({ bitstring, version, ecl, mask, data })

Helper class for QR Code data

  • .size
  • .data
  • .grid
  • .data_grid
  • .functional_grid
  • .finder_grid
  • .alignment_grid
  • .timing_grid
  • .format_grid
  • .version_grid

permuteURL(url, options)

Returns: [String]

Permutes a URL into an array of all possible variations of the same URL.

url

Type: String

A URL, i.e. https://github.com/m4r-sh or m4r.sh

options

Type: Object

Options for URL variation. Caps options permute the substring into every possible uppercase/lowercase combination.

  • protocols: ['http','https']
  • protocol_caps: true
  • domain_caps: true
  • path_caps: false

permuteWIFI(name, pwd)

Returns: [String]

Permutes a WiFi name/pwd into an array of all possible encoding orders.

name

Type: String

The name of the WiFi network

pwd

Type: String

The password of the WiFi network

Examples

Credits

  • Nayuki's QR Code Generator
    • https://www.nayuki.io/page/creating-a-qr-code-step-by-step
    • https://www.nayuki.io/page/optimal-text-segmentation-for-qr-codes
  • Russ Cox's Qart Codes
    • https://research.swtch.com/qart
    • https://research.swtch.com/qr/draw/
  • QRazyBox
    • https://merri.cx/qrazybox/help/getting-started/about-qr-code.html