Skip to content

An Angular 4+ Component Library for Generating QR (Quick Response ) Codes

Notifications You must be signed in to change notification settings

xavis/ngx-qrcode3

 
 

Repository files navigation

ngx-qrcode

An Angular 4+ Component library for Generating QR (Quick Response ) Codes .

Demo

A simple demo

Credits

This package is a fork from techiediaries/ngx-qrcode.

Improvements

I have added the functionality to customize the version and error correction level of the QR code used during the generation process. Now you can use two new attributes in the component to send information to it from parent: qrc-version and qrc-correction-level.

Installation

To use this version of ngx-qrcode in your project, install it via npm:

$ npm install ngx-qrcode3 --save

Usage

For a complete and detailed tutorial on how to use this library .See :

How to Generate QR Codes In Angular 4+ Applications

Import the NgxQRCodeModule from ngx-qrcode into your app :

Once the library is imported, you can use the ngx-qrcode component in your Angular application:

<!-- Adding a qrcode generator component in app.component.html -->

<ngx-qrcode [qrc-value]="value" [qrc-version]=5 [qrc-correction-level]="'L'"></ngx-qrcode>

Development

To generate all *.js, *.d.ts and *.metadata.json files:

$ npm run build

To lint all *.ts files:

$ npm run lint

License

MIT © Techiediaries Improvement: Xavis

About

An Angular 4+ Component Library for Generating QR (Quick Response ) Codes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 55.4%
  • TypeScript 44.6%