Node.js HTML to PDF
Convert HTML/URL to PDF in Node.js backend services through the REST API.
const res = await fetch("https://shipany2-pdf-sandbox.vercel.app/api/pdf", {
method: "POST",
headers: {"content-type":"application/json"},
body: JSON.stringify({ url: "https://example.com" })
});