Socket
Socket
Sign inDemoInstall

wc-qrcode

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wc-qrcode

An efficient and lightweight QR Code WebComponent integrated with Rust wasm library.


Version published
Maintainers
1
Created
Source

wc-qrcode

published coverage npm npm jsDelivr GitHub issues license

NPM

An efficient and lightweight QR Code WebComponent integrated with Rust wasm library.

Installation

You can install wc-qrcode with npm, or just get started quickly with CDN.

Install from npm

To install from npm, open terminal in your project folder and run:

npm install wc-qrcode

After the package is installed, then you can import the qrcode webcomponent into you code:

import 'wc-qrcode';

window.onload = function() {
  let qrElement = document.createElement('qr-code');
  qrElement.setAttribute('text', 'https://example.org');
  qrElement.setAttribute('size', '6');
  document.body.appendChild(qrElement);
}

Install from CDN

There is jsDelivr CDN available for quickly integrated with your web page.

https://cdn.jsdelivr.net/npm/wc-qrcode@0.1.6

or

<script src="https://cdn.jsdelivr.net/npm/wc-qrcode@0.1.6"></script>
Basic Usages:
<html>
  <head>

    <!-- Load QR WebComponent library -->
    <script src="https://cdn.jsdelivr.net/npm/wc-qrcode@0.1.6"></script>
    <!-- End Load -->

  </head>

  <body>

    <!-- Using "qr-code" html tag to generate QR Code -->
    <qr-code
      text="https://github.com/yishiashia/wc-qrcode"
      size="6"
    ></qr-code>

  </body>
</html>

Demo page

Live Demo

Attributes

text

String type. The data of QR Code.

size

Number type. The QR code image size (multiply by 16px).

alt

String type. The alt description text of the generated qrcode image.

Element Properties

PropertyTypeDescription
textStringThe data string to generate QR code.
sizeIntegerThe QR Code image size (width and height would be the size multiply by 16px).
altStringThe alt description text of the generated qrcode image.

You can update the qrcode component by setting its properties.

For example:

const qrElement = document.getElementsByTagName("qr-code")[0];

if (qrElement !== undefined) {
  qrElement.text = "https://www.example.org";
  qrElement.alt = "URL of example.org";
  qrElement.size = 10;
}

Keywords

FAQs

Package last updated on 04 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc