Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Whatsapp Web Reveng | 5,771 | 5 months ago | 159 | mit | JavaScript | |||||
Reverse engineering WhatsApp Web. | ||||||||||
Jquery Qrcode | 4,538 | 8 | 5 years ago | 1 | January 19, 2014 | 89 | mit | JavaScript | ||
qrcode generation standalone (doesn't depend on external services) | ||||||||||
Qrgen | 1,391 | 379 | 17 | 10 months ago | 3 | March 28, 2014 | Java | |||
a simple QRCode generation api for java built on top ZXING | ||||||||||
Qrcode Rust | 341 | 36 | 17 | 2 years ago | 24 | February 23, 2020 | 18 | other | Rust | |
QR code encoder in Rust. | ||||||||||
Qr.dart | 279 | 42 | 7 | 25 days ago | 15 | April 12, 2022 | 2 | bsd-3-clause | Dart | |
Dart QR code generation library. | ||||||||||
Gauth | 75 | 7 | 1 | 6 years ago | 5 | September 12, 2016 | 2 | mit | PHP | |
Google Authenticator Code Validation and Generation | ||||||||||
Qr | 58 | 3 months ago | gpl-3.0 | C | ||||||
IEC18004 (QR) 2D barcode generation library and command line | ||||||||||
Qr Code Generator | 57 | 8 years ago | 2 | Swift | ||||||
A demo app for QR Code Generation | ||||||||||
Prawn Qrcode | 48 | 34 | 1 | 5 months ago | 13 | June 16, 2020 | 1 | apache-2.0 | Ruby | |
An extension to prawn for easy QR Code generation/rendering | ||||||||||
Qr.js | 35 | 11 years ago | JavaScript | |||||||
Simple HTML5 Canvas-based QR Code generation |
jquery.qrcode.js is jquery plugin for a pure browser qrcode generation. It allow you to easily add qrcode to your webpages. It is standalone, less than 4k after minify+gzip, no image download. It doesnt rely on external services which go on and off, or add latency while loading. It is based on a library which build qrcode in various language. jquery.qrcode.js wraps it to make it easy to include in your own code.
Show, don't tell, here is a example
Let me walk you thru it. First include it in your webpage with the usual script tag
<script type="text/javascript" src="jquery.qrcode.min.js"></script>
Then create a DOM element which gonna contains the generated qrcode image. Lets say a div
<div id="qrcode"></div>
Then you add the qrcode in this container by
jquery('#qrcode').qrcode("this plugin is great");
This is it. see it live.
You can set the height and width of the generated qrcode:
jquery('#qrcode').qrcode({width: 64,height: 64,text: "size doesn't matter"});
jquery.qrcode.js is available on github here under MIT license. If you hit bugs, fill issues on github. Feel free to fork, modify and have fun with it :)