You can now visualize, explore and modify your Worker’s architecture directly in the Cloudflare dashboard, making it easier to understand how your application connects to Cloudflare resources like D1 databases , Durable Objects , KV namespaces , and more . With this new view, you can easily: Explore existing binding...
Workers - View an architecture diagram of your Worker directly in the Cloudflare dashboard
Cloudflare Developer Platform Changelog · 2025-06-03
Related items
Workflows, Workers - Visualize your Workflows in the Cloudflare dashboard
Cloudflare Workflows now automatically generates visual diagrams from your code Your Workflow is parsed to provide a visual map of the Workflow structure, allowing you to: Understand how steps connect and execute Visualize loops and nested logic Follow branching paths for conditional logic You can collapse loops and...
Workers - Workers native integrations were removed from the Cloudflare dashboard
Workers native integrations were originally launched in May 2023 to connect to popular database and observability providers with your Worker in just a few clicks. We are changing how developers connect Workers to these external services. The Integrations tab in the dashboard has been removed in favor of a more direc...
Cloudflare Images - Bind the Images API to your Worker
You can now interact with the Images API directly in your Worker. This allows more fine-grained control over transformation request flows and cache behavior. For example, you can resize, manipulate, and overlay images without requiring them to be accessible through a URL. The Images binding can be configured in the...
Workers - Debug, profile, and view logs for your Worker in Chrome Devtools — now supported in the Cloudflare Vite plugin
You can now debug, profile, view logs, and analyze memory usage for your Worker using Chrome Devtools when your Worker runs locally using the Cloudflare Vite plugin . Previously, this was only possible if your Worker ran locally using the Wrangler CLI , and now you can do all the same things if your Worker uses Vite...
Workers - New Domains tab in the Workers dashboard
In your Worker's dashboard, there is now a dedicated Domains tab where you can purchase a new domain through Cloudflare Registrar and have it automatically connected, add an existing domain , and manage all of your Worker's routing in one place. You can also enable or disable your workers.dev subdomain and Preview U...
Workers - Run and connect Workers in separate dev commands with the Cloudflare Vite plugin
Workers can now talk to each other across separate dev commands using service bindings and tail consumers, whether started with vite dev or wrangler dev . Simply start each Worker in its own terminal: # Terminal 1 vite dev # Terminal 2 wrangler dev This is useful when different teams maintain different Workers, or w...