Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lean-qr

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lean-qr

minimal QR code generation

  • 2.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2K
decreased by-13.8%
Maintainers
1
Weekly downloads
 
Created
Source

Lean QR

Lean QR is a lightweight yet fully-featured library for generating QR Codes. It runs in NodeJS and all recent browsers, and includes wrapper components for React and Preact. Under 4kB compressed.

Features

  • ISO 18004 compliant;
  • Lightweight (less than 4kB compressed, ~7kB uncompressed);
  • Simple yet flexible API, with sensible defaults for all configuration;
  • Supports all standard encodings out-of-the box (including Unicode and Shift-JIS);
  • Automatic encoding to minimise output size;
  • Fast enough for lag-free live editing;
  • Multiple output formats (canvas / PNG / SVG / text).

You can see it in action online, or try it from the terminal:

npx lean-qr 'MY MESSAGE HERE'

Basic Usage

<canvas id="my-qr-code" />
<a href="#" download="qr.png" id="download-link">Download</a>

<style>
#my-qr-code {
  image-rendering: pixelated;
  width: 100%;
}
</style>
import { generate } from 'lean-qr';

const qrCode = generate('LEAN-QR LIBRARY');

// display in canvas:
qrCode.toCanvas(document.getElementById('my-qr-code'));

// provide a download link:
const dataUrl = qrCode.toDataURL({ scale: 10 });
document.getElementById('download-link')
  .setAttribute('href', dataUrl);

// display as text:
console.log(qrCode.toString());

Full Documentation

Keywords

FAQs

Package last updated on 16 Apr 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