In this example we will see how to generate QR Code in Node.js application. In this example we will use qrcode npm package for generate QR Code. we will create json data object and create QR Code for that json data object.
QR code has become an important part of life now a days. QR means “Quick Response”. It can store a large amount of data. QR scanner can instantly process the data by scanning it. In Node.js generate QR Code is very easy.
So, In this tutorial we are generate QR Code using qrcode package in Node.js.
In this step create node application using below commands.
mkdir qr_code_example
cd qr_code_example
npm init
In this step install the qrcode module using below command
npm install qrcode
In this step we can send emai with attachment. So, make sure your configurarion before sending email.
const qr = require('qrcode');
let data = {
id: 1,
name: "dell",
email: "[email protected]"
};
let strData = JSON.stringify(data);
qr.toString(strData, {type:'terminal'},
function (err, code) {
if(err) return console.log("error occurred !!");
console.log(code);
});
qr.toDataURL(strData, function (err, code) {
if(err) return console.log("error occurred !!");
console.log(code);
})
const data = {
errorCorrectionLevel: 'H',
type: 'terminal',
quality: 0.95,
margin: 1,
color: {
dark: '#208698',
light: '#FFF',
},
}
let strData = JSON.stringify(data)
For Custom QR Code generate you define diffrent parameters like above code.
run index.js using below code :
node index.js
You might also like :
In this article, we will see how to remove/delete files from public folders. We will give you a demo of how to remo...
Sep-14-2020
In this article, we will see carbon add months to date in laravel 9. Carbon provides the addMonth() and addMon...
Nov-18-2022
Hey there! Ever wondered how to recover deleted data in Laravel 10 without much hassle? Well, you're in luck! I'...
Nov-27-2023
In this article, we will share you new information about laravel authentication using a breeze. Laravel Breeze...
Feb-05-2021