Generate PDFs dynamically at the edge using PDForge’s powerful PDF generation API, powered by edge functions.
Find it on GitHub: /edgee-cloud/pdforge-generate-pdf-componentA WebAssembly component that integrates with PDForge.com to trigger PDF generation directly from the edge. This component provides a simple way to generate PDFs using PDForge’s API through an HTTP endpoint.
Once configured, you can trigger PDF generation by sending requests to your configured endpoint:
Copy
Ask AI
// Example usage (specific API format to be documented)await fetch('/generate-pdf', { method: 'POST', body: JSON.stringify({ // your template parameters "username": "JohnyDoe", "email": "John@Doe.com" })});