Skip to content

Instantly share code, notes, and snippets.

@bitcynth
Created September 27, 2019 19:50
Show Gist options
  • Save bitcynth/4d66d54bce68c55664d6fd865a9c69c5 to your computer and use it in GitHub Desktop.
Save bitcynth/4d66d54bce68c55664d6fd865a9c69c5 to your computer and use it in GitHub Desktop.
What's my IP but with Cloudflare Workers. (MIT License)
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
return new Response(request.headers.get('CF-Connecting-IP'), {status: 200})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment