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>