I'm doing an internship for my Software Engineering degree this fall semester. One of my tasks is to develop a widget that clients can embed on their websites using a simple `<script>` tag. That tag should fetch a JavaScript file from our server that contains all the logic. Yesterday I worked on coding the widget's UI. Today I need to figure out how to handle QR code generation. Ideally, I'd like to do it on the client side so we can avoid building API routes or storing anything in a database. I’m looking at the npm package `qrcode-generator`. With it, I could probably just generate the QR as SVG and inject it directly into the page from the script. #dev