oh the other one is https://cloudflare.manfredi.io/en/tools/datacenters/
oh the other one is https://cloudflare.manfredi.io/en/tools/datacenters/
Cloudflare Tools
A set of unofficial tools to check connectivity to the Cloudflare network.

javascript native RPC but the worker fails immediately with the warning:
compatibility_date?default it appears to work.wrangler detects the type of the Worker based on whether or not you export default. If it isn't export default, then it assumes you are using Service Worker syntaxclass have a fetch() method?wrangler.toml include a route/workers.dev?workers_dev = falseworkers_dev by default, unless you add a routefetch() method, even if it doesn't actually do anythingasync fetch(){} to class and it deployed.fetch even if you have export default {}name = "worker-t"
main = "src/worker.js"
compatibility_date = "2024-05-07"
node_compat = trueexport default {
fetch(req: Request) {
const someHeader = req.headers.get("some-header");
}
}