Package Exports
- qrcode-terminal
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 (qrcode-terminal) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
QRCode Terminal Edition 
Going where no QRCode has gone before.
Install
Can be installed with:
npm install qrcode-terminal
and used:
var qrcode = require('qrcode-terminal');
Usage
To display some data to the terminal just call:
qrcode.generate('This will be a QRCode Eh!');
If you don't want to display to the terminal but just want to string you can provide a callback:
qrcode.generate('http://www.github.com', function (qrcode) {
console.log(qrcode);
});
Developing
To setup the development envrionment run npm install
To run tests run npm test
Contributers
Gord Tanner <gtanner@gmail.com>
Micheal Brooks <michael@michaelbrooks.ca>