JavaScript Examples - Return HTML
Build an HTML page of an HTML string inside the Edge Function.
const html = `<!DOCTYPE html> <body> <h1>Hello World</h1> <p>This markup was generated by Azion - Edge Functions.</p> </body>`
async function handleRequest(request) { return new Response(html, { headers: { "content-type": "text/html;charset=UTF-8", }, }) }
addEventListener("fetch", event => { return event.respondWith(handleRequest(event.request)) })
Contributors