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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vanilla-mint/component-qr-code

v0.2.11

Published

A reactive QR code generator web component that creates SVG QR codes from text input.

Readme

@vanilla-mint/component-qr-code

A reactive QR code generator web component that creates SVG QR codes from text input.

Installation

npm install @vanilla-mint/component-qr-code

Features

  • 📱 Dynamic QR Code Generation - Generate QR codes from any text input
  • 🎨 SVG Output - High-quality, scalable vector graphics
  • ⚙️ Customizable Size - Adjustable cell size for different display needs
  • 🔄 Reactive Updates - Automatically regenerates when text or size changes
  • 📊 High Error Correction - Built-in error correction level 'H' for reliability
  • 🚀 Zero Dependencies - Loads QR code library dynamically when needed
  • 📱 Mobile Friendly - Perfect for mobile scanning applications

Basic Usage

Simple QR Code

<qr-code text="Hello World!"></qr-code>

Custom Size

<qr-code text="https://example.com" cell-size="8"></qr-code>

Programmatic Usage

import { QrCode, define } from '@vanilla-mint/component-qr-code';

// Register the custom element
define(QrCode);

// Create and configure the component
const qrCode = document.createElement('qr-code');
qrCode.setAttribute('text', 'https://vanilla-mint.dev');
qrCode.setAttribute('cell-size', '6');

document.body.appendChild(qrCode);

Dynamic Content

// Update QR code content dynamically
const qrCode = document.querySelector('qr-code');
qrCode.setAttribute('text', 'New content here!');

// Change size
qrCode.setAttribute('cell-size', '10');

API Documentation

Attributes

| Attribute | Type | Default | Description | |-----------|------|---------|-------------| | text | string | - | The text content to encode in the QR code | | cell-size | number | 4 | Size of each QR code cell in pixels |

Properties

| Property | Type | Description | |----------|------|-------------| | qrcode | function | Reference to the loaded QR code library |

Methods

The component extends the standard HTMLElement and includes all vanilla-mint lifecycle methods:

  • vmConnected() - Called when component is added to DOM, loads QR library if needed
  • vmDisconnected() - Called when component is removed from DOM
  • vmAdopted() - Called when component is moved to new document

Advanced Examples

URL QR Codes

<!-- Website URL -->
<qr-code text="https://vanilla-mint.dev" cell-size="6"></qr-code>

<!-- Email link -->
<qr-code text="mailto:[email protected]?subject=Hello" cell-size="5"></qr-code>

<!-- Phone number -->
<qr-code text="tel:+1234567890" cell-size="7"></qr-code>

WiFi QR Code

// Generate WiFi connection QR code
function createWiFiQR(ssid, password, security = 'WPA') {
  const wifiString = `WIFI:T:${security};S:${ssid};P:${password};;`;
  const qrCode = document.createElement('qr-code');
  qrCode.setAttribute('text', wifiString);
  qrCode.setAttribute('cell-size', '8');
  return qrCode;
}

const wifiQR = createWiFiQR('MyNetwork', 'MyPassword');
document.body.appendChild(wifiQR);

Contact Information (vCard)

// Generate contact information QR code
function createContactQR(contact) {
  const vcard = `BEGIN:VCARD
VERSION:3.0
FN:${contact.name}
ORG:${contact.organization}
TEL:${contact.phone}
EMAIL:${contact.email}
URL:${contact.website}
END:VCARD`;

  const qrCode = document.createElement('qr-code');
  qrCode.setAttribute('text', vcard);
  qrCode.setAttribute('cell-size', '6');
  return qrCode;
}

const contactQR = createContactQR({
  name: 'John Doe',
  organization: 'Example Corp',
  phone: '+1234567890',
  email: '[email protected]',
  website: 'https://johndoe.com'
});

Custom Styling

<style>
  .qr-container {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
  }
  
  .qr-container qr-code {
    display: block;
    margin: 0 auto 10px;
  }
  
  .qr-container .qr-label {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
  }
  
  /* Style the SVG output */
  .qr-container qr-code svg {
    border: 2px solid #eee;
    border-radius: 8px;
  }
</style>

<div class="qr-container">
  <qr-code text="https://vanilla-mint.dev" cell-size="8"></qr-code>
  <div class="qr-label">Scan to visit our website</div>
</div>

QR Code Generator Form

<div class="qr-generator">
  <h3>QR Code Generator</h3>
  <form id="qr-form">
    <div>
      <label for="qr-text">Text to encode:</label>
      <textarea id="qr-text" placeholder="Enter text, URL, or other content"></textarea>
    </div>
    <div>
      <label for="qr-size">Cell size:</label>
      <input type="range" id="qr-size" min="2" max="12" value="6">
      <span id="size-display">6</span>
    </div>
  </form>
  
  <div class="qr-output">
    <qr-code id="generated-qr" text="Sample text" cell-size="6"></qr-code>
  </div>
</div>

<script>
document.addEventListener('DOMContentLoaded', () => {
  const textInput = document.getElementById('qr-text');
  const sizeInput = document.getElementById('qr-size');
  const sizeDisplay = document.getElementById('size-display');
  const qrCode = document.getElementById('generated-qr');
  
  function updateQR() {
    if (textInput.value.trim()) {
      qrCode.setAttribute('text', textInput.value);
    }
    qrCode.setAttribute('cell-size', sizeInput.value);
    sizeDisplay.textContent = sizeInput.value;
  }
  
  textInput.addEventListener('input', updateQR);
  sizeInput.addEventListener('input', updateQR);
});
</script>

Bulk QR Code Generation

// Generate multiple QR codes from a list
function generateBulkQRCodes(items, container) {
  items.forEach((item, index) => {
    const wrapper = document.createElement('div');
    wrapper.className = 'qr-item';
    
    const qrCode = document.createElement('qr-code');
    qrCode.setAttribute('text', item.text);
    qrCode.setAttribute('cell-size', item.size || '6');
    
    const label = document.createElement('div');
    label.textContent = item.label || `Item ${index + 1}`;
    label.className = 'qr-label';
    
    wrapper.appendChild(qrCode);
    wrapper.appendChild(label);
    container.appendChild(wrapper);
  });
}

// Usage
const qrData = [
  { text: 'https://example.com', label: 'Website', size: 6 },
  { text: 'tel:+1234567890', label: 'Phone', size: 5 },
  { text: 'mailto:[email protected]', label: 'Email', size: 5 }
];

generateBulkQRCodes(qrData, document.getElementById('qr-grid'));

Configuration

Error Correction Level

The component uses error correction level 'H' (High) by default, which provides:

  • ~30% error correction capability
  • Best for scenarios where QR codes might be partially damaged or obscured
  • Suitable for printing and mobile scanning

External Library

The component automatically loads the QR code generation library from CDN:

// Library loaded from: https://cdn.jsdelivr.net/npm/qrcode-generator/qrcode.min.js

To use a different version or local copy, load it before using the component:

<script src="/path/to/qrcode.min.js"></script>

Browser Support

  • Chrome/Edge 88+
  • Firefox 85+
  • Safari 14+

Requires support for:

  • ES6 Modules
  • Web Components
  • SVG rendering

Common Use Cases

  • Website URLs and landing pages
  • Contact information sharing
  • WiFi network credentials
  • Product information and links
  • Event tickets and check-ins
  • Payment and donation links
  • Social media profiles
  • App download links

License

MIT License - see LICENSE file for details.