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
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With