1. qr.js
qrcode encoding in javascript
qr.js
Package: qr.js
Created by: shtylman
Last modified: Sat, 25 Jun 2022 05:21:57 GMT
Version: 0.0.0
License: MIT
Downloads: 2,624,658
Repository: https://github.com/shtylman/qr.js

Install

npm install qr.js
yarn add qr.js

qr.js

qrcode encoding in pure javascript with no additional dependencies

 var qr = require('qr.js');

var qrcode = qr('foo bar baz');

var cells = qrcode.modules;

// cell[R] -> row
// if cell[R][C] is true, that cell is "on"

interactive example

credit

This library is repackaged work from the qrcode library here http://www.d-project.com/ which is also licensed under the MIT license. See LICENSE-qrcode for the license file to that project.

notes

The word "QR Code" is registered trademark of DENSO WAVE INCORPORATED
http://www.denso-wave.com/qrcode/faqpatent-e.html

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code