@samooth/qrcode-terminal
v0.13.5
Published
QRCodes, in the terminal
Readme
QRCode Terminal Edition
Going where no QRCode has gone before.

Node Library
Install
Can be installed with:
$ npm install @samooth/qrcode-terminaland used:
import { default as qrcode } from 'qrcode-terminal';Usage
To display some data to the terminal just call:
qrcode.generate('This will be a QRCode, eh!');You can even specify the error level (default is 'L'):
qrcode.setErrorLevel('Q');
qrcode.generate('This will be a QRCode with error level Q!');If you don't want to display to the terminal but just want to string you can provide a callback:
qrcode.generate('http://github.com', function (qrcode) {
console.log(qrcode);
});If you want to display small output, provide opts with small:
qrcode.generate('This will be a small QRCode, eh!', {small: true});
qrcode.generate('This will be a small QRCode, eh!', {small: true}, function (qrcode) {
console.log(qrcode)
});Command-Line
Install
$ npm install -g @samooth/qrcode-terminalUsage
$ qrcode-terminal --help
$ qrcode-terminal 'http://github.com'
$ echo 'http://github.com' | qrcode-terminalSupport
- OS X
- Linux
- Windows
Server-side
[node-qrcode][node-qrcode-url] is a popular server-side QRCode generator that
renders to a canvas object.
Developing
To setup the development envrionment run npm install
To run tests run npm test
Contributors
Tomás Díaz <[email protected]>
Gord Tanner <[email protected]>
Micheal Brooks <[email protected]>