Skip to content
forked from ocordeiro/qrnode

QR Code decoder from local file or URL without canvas

License

Notifications You must be signed in to change notification settings

Barrokgl/qrnode

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

qrnode

QR Code decoder from local file or URL without canvas

A fork of jsqrcode which is a port of ZXing

Example usage:

var qrnode = require('qrnode');

// From URL
qrnode.detect("https://chart.googleapis.com/chart?chs=250x250&cht=qr&chl=Teste", function(result){
  console.log(result);
});

// From local File
qrnode.detect("qrcode.png", function(result){
  console.log(result);
});

License

qrnode is licensed under the Apache license.

About

QR Code decoder from local file or URL without canvas

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%