JSPM

qrcodejs-bd

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q17632F
  • License MIT

a qrcode plug-in with border parameters. QRCodeJS is a javascript library for making QRCode. It has no dependencies, is cross-browser and using HTML5 Canvas. This porject is a fork by wahtlife Company from zhiyuan-l, with Code Length Overflow fixed.

Package Exports

  • qrcodejs-bd

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (qrcodejs-bd) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

QRCode.js

QRCode.js is javascript library for making QRCode. QRCode.js supports Cross-browser with HTML5 Canvas and table tag in DOM. QRCode.js has no dependencies.

Project forked by zhiyuan-l from whatlife/qrcodejs, I merged the border option from https://github.com/davidshimjs/qrcodejs/pull/54/commits/ceab422d98d36fb6b8f138954745d1b4461b28cb. I publish it to npm.

Basic Usages

<div id="qrcode"></div>
<script type="text/javascript">
  new QRCode(
    document.getElementById('qrcode'),
    'https://github.com/whatlife/qrcodejs'
  )
</script>

or with some options

<div id="qrcode"></div>
<script type="text/javascript">
  var qrcode = new QRCode(document.getElementById('qrcode'), {
    text: 'https://github.com/whatlife/qrcodejs',
    width: 128,
    height: 128,
    border: 4,
    colorDark: '#000000',
    colorLight: '#ffffff',
    correctLevel: QRCode.CorrectLevel.H,
  })
</script>

and you can use some methods

qrcode.clear() // clear the code.
qrcode.makeCode('https://github.com/whatlife') // make another code.

Using with webpack

const QRCode = require('qrcodejs-bd')
// Use QRCode as usual

Browser Compatibility

IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, ETC.

License

MIT License