Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert a string or data into QR Code in Node Js

I need to convert user data into a QR Code and show it in the web browser what is the best way to generate QR Code in node js and show it in user browser

like image 631
AakashRajni Avatar asked Oct 15 '25 14:10

AakashRajni


1 Answers

I think you should look at qrcode library

This is an exemple of basic usage :

var QRCode = require('qrcode')

QRCode.toDataURL('I am a pony!', function (err, url) {
  console.log(url)
});

Hope it helps.

like image 110
Sparw Avatar answered Oct 18 '25 01:10

Sparw