We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It let's you respond rapidly, and then save data, which can be used to speed up subsequent requests.
https://developers.cloudflare.com/workers/about/tips/fetch-event-lifecycle/
let url = 'https://ca88e957.ngrok.io/log' addEventListener('fetch', event => { event.respondWith(handleRequest(event)) event.waitUntil(postLog(JSON.stringify({hello: 'hi'}))) }) function postLog(data) { return fetch(url, { method: 'POST', body: data, }) } /** * Respond to the request * @param {Request} request */ async function handleRequest(event) { url = 'https://ca88e957.ngrok.io/magic' return new Response('hello world', {status: 200}) }
https://ca88e957.ngrok.io/magic is fetched after the repsonse is sent back.
https://ca88e957.ngrok.io/magic
The text was updated successfully, but these errors were encountered:
GregBrimble
No branches or pull requests
It let's you respond rapidly, and then save data, which can be used to speed up subsequent requests.
https://developers.cloudflare.com/workers/about/tips/fetch-event-lifecycle/
https://ca88e957.ngrok.io/magic
is fetched after the repsonse is sent back.The text was updated successfully, but these errors were encountered: