Author: | sinchang |
---|---|
Views Total: | 1,255 views |
Official Page: | Go to website |
Last Update: | September 12, 2020 |
License: | MIT |
Preview:

Description:
qrcode-parser is a JavaScript library to parse and read information from QR codes you provide in File objects or image URLs.
Dependencies:
How to use it:
Install the qrcode-parser:
# Yarn $ yarn add qrcode-parser # NPM $ npm install qrcode-parser --save
The example app.
import qrcodeParser from src' const imageUrl = 'qrcode.png' qrcodeParser(imageUrl).then(res => { document.getElementById('content').innerText = res.data }) const fileElement = document.getElementById('file') fileElement.addEventListener('change', () => { const file = fileElement.files[0] qrcodeParser(file).then(res => { document.getElementById('content').innerText = res.data }) }, false)
Changelog:
09/12/2020
- fix: upgrade deps and add test cases