Socket
Socket
Sign inDemoInstall

qrcode-terminal

Package Overview
Dependencies
0
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    qrcode-terminal

QRCodes, in the terminal


Version published
Weekly downloads
1.8M
increased by3.25%
Maintainers
2
Created
Weekly downloads
 

Package description

What is qrcode-terminal?

The qrcode-terminal package allows you to generate QR codes directly in your terminal. This is particularly useful for CLI applications and development tools where displaying a QR code in a graphical user interface is not feasible. The QR codes generated can encode URLs, text, or other data, and can be scanned using a smartphone or any other QR code reader.

What are qrcode-terminal's main functionalities?

Generate QR Code in Terminal

This feature allows you to generate a QR code in the terminal. The example provided generates a QR code for the URL 'https://www.example.com'. The option 'small: true' makes the QR code compact.

const qrcode = require('qrcode-terminal');

qrcode.generate('https://www.example.com', { small: true }, function (qrcode) {
    console.log(qrcode);
});

Other packages similar to qrcode-terminal

Readme

Source

QRCode Terminal Edition Build Status

Going where no QRCode has gone before.

Basic Example

Node Library

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://github.com', function (qrcode) {
    console.log(qrcode);
});

Command-Line

Install

$ npm install -g qrcode-terminal

Usage

$ qrcode-terminal --help
$ qrcode-terminal 'http://github.com'

Support

  • OS X
  • Linux
  • Windows

Server-side

node-qrcode 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

Contributers

Gord Tanner <gtanner@gmail.com>
Micheal Brooks <michael@michaelbrooks.ca>

Keywords

FAQs

Last updated on 19 Mar 2013

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc