Skip to content

Instantly share code, notes, and snippets.

@picsoung
Created November 3, 2020 03:05
Show Gist options
  • Save picsoung/e45b08f5378c246b4ebcf7de8d3b731c to your computer and use it in GitHub Desktop.
Save picsoung/e45b08f5378c246b4ebcf7de8d3b731c to your computer and use it in GitHub Desktop.
Simple Cloudflare worker code to point a domain to a typeform
//Replace with yours
let TYPEFORM_URL = "https://picsoung.typeform.com/to/QXS2h1?utm_source=cf_workers"
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
let response = await fetch(TYPEFORM_URL)
response = new Response(response.body, response);
return new HTMLRewriter()
.transform(response);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment