Giter VIP home page Giter VIP logo

vue-qrcode-reader's Introduction

Logo

for Vue.js 2 npm monthly downloads Travis CI: build status
is maintained? yes licence: MIT badges = awesome
size minified + gzipped npm current version
uses semantic release

A set of Vue.js components, allowing you to detect and decode QR codes, without leaving the browser.

  • ๐ŸŽฅ QrcodeStream accesses the device camera and continuously scans the incoming frames.
  • ๐Ÿšฎ QrcodeDropZone renders to an empty region where you can drag-and-drop images to be decoded.
  • ๐Ÿ“‚ QrcodeCapture is a classic file upload field, instantly scanning all files you select.

All components are responsive. What doesn't fit your layout can be customized.

You also get simple elegant APIs:

<qrcode-stream @decode="onDecode"></qrcode-stream>
methods: {
  onDecode (decodedString) {
    // ...
  }
}

Screenshot 1 Screenshot 2 Screenshot 3

Browser support

QrcodeStream

This component fundamentally depends on the Stream API.

Internet Explorer Edge Firefox Chrome Safari
No Yes Yes Yes 11+
  • Chrome requires HTTPS or localhost (see #38 for help)
  • Safari also requires HTTPS even on localhost (see #48)
  • on iOS it only works with Safari
    • Chrome for iOS, Firefox for iOS and so on are not supported (see #29)
    • even web apps added to home screen are not supported (see #76)

QrcodeDropZone and QrcodeCapture

The newest API these components depend on is the FileReader API.

Internet Explorer Edge Firefox Chrome Safari
10+ Yes Yes Yes Yes
  • Drag-and-drop is not supported on mobile

Troubleshooting

  • I don't see the camera when using QrcodeStream.
    • Check if it works on the demo page. Especially the Decode All demo, since it renders error messages. If you see errors, consult the docs to understand their meaning.
      • Demo works but not locally: Listen for the init event to investigate errors.
      • Demo doesn't work: Carefully review the Browser Support section above. Maybe your device is just not supported.

Installation

npm install vue-qrcode-reader

or with Yarn:

yarn add vue-qrcode-reader

Default import

You can either import the components independantly and register them in another components scope:

import { QrcodeStream, QrcodeDropZone, QrcodeCapture } from 'vue-qrcode-reader'

Vue.component('my-component', {
  components: {
    QrcodeStream,
    QrcodeDropZone,
    QrcodeCapture
  },

  // ...
))

Or alternatively register all of them globally right away:

import Vue from 'vue'
import VueQrcodeReader from 'vue-qrcode-reader'

Vue.use(VueQrcodeReader)

โš ๏ธ A css file is included when importing the package. You may have to setup your bundler to embed the css in your page.

Browser

All the examples on the demo page utilize single-file components. To use them in your project you need a build tool like webpack. Check out this fiddle for a simpler example you can use right in the browser.

Besides Vue you need to include the following CSS and JS file:

The global variable window.VueQrcodeReader should now be available.

All components should be automatically registered globally. If not, you can do it like this:

Vue.use(VueQrcodeReader)

You can also register specific components locally, in one of your components:

Vue.component('my-component', {
  components: {
    'qrcode-stream': VueQrcodeReader.QrcodeStream,
    'qrcode-drop-zone': VueQrcodeReader.QrcodeDropZone,
    'qrcode-capture': VueQrcodeReader.QrcodeCapture
  },

  // ...
)

vue-qrcode-reader's People

Contributors

gruhn avatar adriangoransson avatar sergiocarracedo avatar afontcu avatar jkathmann avatar gewra avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.