GET, render, done.
Adding QR codes to a web app usually means installing a client-side library, dealing with canvas rendering quirks, and bloating your bundle by 30-100KB. Server-side QR generation needs a backend dependency, deployment, and maintenance. Most web apps don't need that level of integration — they just need a QR image inline somewhere.
Drop in an `<img>` tag pointing at the QRThis API: `<img src='https://www.qrth.is/api/generate?url=...'>`. The browser fetches the PNG, renders it inline. No JavaScript, no library, no build-time generation. Works in any framework (React, Vue, Svelte, plain HTML) because it's just an image URL.
Last updated: August 2026