
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
    <channel>
        <title><![CDATA[ The Cloudflare Blog ]]></title>
        <description><![CDATA[ Get the latest news on how products at Cloudflare are built, technologies used, and join the teams helping to build a better Internet. ]]></description>
        <link>https://blog.cloudflare.com</link>
        <atom:link href="https://blog.cloudflare.com/" rel="self" type="application/rss+xml"/>
        <language>en-us</language>
        <image>
            <url>https://blog.cloudflare.com/favicon.png</url>
            <title>The Cloudflare Blog</title>
            <link>https://blog.cloudflare.com</link>
        </image>
        <lastBuildDate>Fri, 03 Apr 2026 23:45:21 GMT</lastBuildDate>
        <item>
            <title><![CDATA[Cloudflare named a leader in Forrester Edge Development Platforms Wave, Q4 2023]]></title>
            <link>https://blog.cloudflare.com/forrester-wave-edge-development-2023/</link>
            <pubDate>Mon, 27 Nov 2023 18:08:50 GMT</pubDate>
            <description><![CDATA[ Forrester has recognized Cloudflare as a leader in The Forrester Wave™: Edge Development Platforms, Q4 2023 with the top score in the current offering category ]]></description>
            <content:encoded><![CDATA[ <p></p><p>Forrester has recognized Cloudflare as a leader in The Forrester Wave™: Edge Development Platforms, Q4 2023 with the top score in the current offering category.</p><p>According to <a href="http://www.cloudflare.com/lp/forrester-wave-edge-development-q4-2023/">the report</a> by Principal Analyst, Devin Dickerson, “Cloudflare’s edge development platform provides the building blocks enterprises need to create full stack distributed applications and enables developers to take advantage of a globally distributed network of compute, storage and programmable security without being experts on CAP theorem.“</p><p>Over one million developers are building applications using the Developer Platform products including <a href="https://workers.cloudflare.com/">Workers</a>, <a href="https://pages.cloudflare.com/">Pages</a>, <a href="https://developers.cloudflare.com/r2/">R2</a>, <a href="https://developers.cloudflare.com/kv/">KV</a>, <a href="https://developers.cloudflare.com/queues/">Queues</a>, <a href="https://developers.cloudflare.com/durable-objects/">Durable Objects</a>, <a href="https://developers.cloudflare.com/d1/">D1</a>, <a href="https://developers.cloudflare.com/stream/">Stream</a>, <a href="https://developers.cloudflare.com/images/">Images</a>, and more. Developers can easily deploy highly distributed, full-stack applications using Cloudflare’s full suite of compute, storage, and developer services.</p>
    <div>
      <h3>Workers make Cloudflare’s network programmable</h3>
      <a href="#workers-make-cloudflares-network-programmable">
        
      </a>
    </div>
    <blockquote><p><b><i>“ A key strength of the platform is the interoperability with Cloudflare’s programmable global CDN combined with a deployment model that leverages intelligent workload placement.”–</i></b> <b>The Forrester Wave™: Edge Development Platforms, Q4 2023</b></p></blockquote><p>Workers run across <a href="https://www.cloudflare.com/network/">Cloudflare’s global network</a>, provide <a href="https://developers.cloudflare.com/workers/runtime-apis/cache/">APIs</a> to read from and write directly to the local cache, and expose context from Cloudflare’s CDN directly on the <a href="https://developers.cloudflare.com/workers/runtime-apis/request/#incomingrequestcfproperties">request object</a> that a Worker receives.</p><p>This close integration with Cloudflare’s network allows developers to build, protect, and connect globally distributed applications, without deploying to specific regions. <a href="https://developers.cloudflare.com/workers/configuration/smart-placement/">Smart Placement</a> optimizes Workers to run in the location that yields the fastest overall performance, whether it's the location closest to the data, or closest to the user. <a href="https://developers.cloudflare.com/hyperdrive/learning/how-hyperdrive-works/">Hyperdrive</a> automatically pools database connections, allowing Workers running all over the world to reuse them when querying PostgreSQL databases, avoiding the scaling challenges that make it hard to use traditional databases with a serverless architecture. <a href="https://developers.cloudflare.com/workers/configuration/cron-triggers/">Cron Triggers</a> allow for up to 15 minutes of CPU time, allowing for compute intensive background work.</p><p>Cloudflare is beyond edge computing — it’s everywhere computing. We use our network to make your application perform best, shaped by real-world data and tailored to access patterns and programming paradigms.</p>
    <div>
      <h3>Deploy distributed systems, without being a distributed systems expert</h3>
      <a href="#deploy-distributed-systems-without-being-a-distributed-systems-expert">
        
      </a>
    </div>
    <blockquote><p><b><i>“ Reference customers consistently call out the ease of onboarding, which sees developers with no prior background delivering workloads across the globe in minutes, and production quality applications within a week. “–</i></b> <b>The Forrester Wave™: Edge Development Platforms, Q4 2023</b></p></blockquote><p>Workers empower any developer to deploy globally distributed applications, without needing to become distributed systems experts or experts in configuring cloud infrastructure.</p><ul><li><p>When you deploy a Worker, behind the scenes Cloudflare distributes it across the globe. But to you, it’s a single application that you can <a href="https://developers.cloudflare.com/workers/observability/local-development-and-testing/">run and test locally</a>, using the same <a href="https://github.com/cloudflare/workerd">open-source JavaScript runtime</a> that your Workers run on in production.</p></li><li><p>When you deploy a <a href="https://developers.cloudflare.com/durable-objects/">Durable Object</a> to coordinate real-time state, you’ve built a distributed application, but instead of having to learn RPC protocols and scale infrastructure, you’ve programmed the whole thing in JavaScript using web standard APIs that front-end developers know and rely on daily.</p></li><li><p>Enqueuing and processing batches of messages with <a href="https://developers.cloudflare.com/queues/">Cloudflare Queues</a> takes adding just a few more lines of JavaScript to an existing Worker.</p></li><li><p>When you create a web application with <a href="https://pages.cloudflare.com/">Cloudflare Pages</a>, you’ve set up a complete continuous build and deployment pipeline with preview URLs, just by connecting to a GitHub repository.</p></li></ul><p>Developers who previously only wrote front-end code are able to build the back end, and make their app real-time and reactive. Teams stuck waiting for infrastructure experts to provision resources are able to start prototyping today rather than next week. Writing and deploying a Worker is familiar and accessible, and this lets engineering teams move faster, with less overhead.</p><p>Why are teams able to get started so quickly?</p><ol><li><p>Workers use <a href="https://developers.cloudflare.com/workers/runtime-apis/">web standard APIs</a> that front-end developers and anyone building web applications already use every day. Cloudflare was a founding member of the Web-interoperable Runtimes Community Group (<a href="https://wintercg.org/">WinterCG</a>) and is committed to <a href="/socket-api-works-javascript-runtimes-wintercg-polyfill-connect/">interoperability across runtimes</a>.</p></li><li><p>The tools developers already use every day are native to our platform. We publish <a href="https://www.npmjs.com/package/@cloudflare/workers-types">TypeScript</a> types for all APIs, and support compiling TypeScript when authoring and deploying via the Wrangler CLI or via the code editor in the Cloudflare dashboard — which itself is <a href="/improved-quick-edit/">powered by</a> the popular VSCode editor.</p></li><li><p>The open-source <a href="https://developers.cloudflare.com/pages/framework-guides/">frameworks</a> that developers prefer to build with are supported. A growing set of APIs from Node.js are <a href="https://developers.cloudflare.com/workers/runtime-apis/nodejs/">available natively</a> in the Workers runtime, allowing existing open source libraries to work on Workers. And increasingly, new open source projects that developers depend on are designed from day one to work across all WinterCG runtimes. Every day, more of the JavaScript ecosystem works on Workers.</p></li></ol>
    <div>
      <h3>Expanding into AI with GPUs, LLMs, and more</h3>
      <a href="#expanding-into-ai-with-gpus-llms-and-more">
        
      </a>
    </div>
    <blockquote><p><b><i>“Its superior vision refuses to limit the future footprint to the edge, and their purposeful approach to building out capabilities on the roadmap suggests that it will be increasingly well positioned to take on public cloud hyperscalers for workloads. “–</i></b> <b>The Forrester Wave™: Edge Development Platforms, Q4 2023</b></p></blockquote><p>We are building a complete compute platform for production applications at scale. And as every company and every developer is now building or experimenting with AI, Cloudflare has <a href="/workers-ai">made GPUs an integrated part of our developer platform</a>. We’ve made it just as easy to get started with AI as we have to deliver a global workload. In mid-November, we hit our goal to have Workers AI Inference running in <a href="/workers-ai-update-stable-diffusion-code-llama-workers-ai-in-100-cities/">over 100 cities</a> around the world, and by the end of the 2024 Workers AI will be running in nearly every city Cloudflare has a presence in.</p><p><a href="https://developers.cloudflare.com/workers-ai/">Workers AI</a> allows developers to build applications using the latest open-source AI models, without provisioning any infrastructure or paying for costly unused capacity. We’re extending this to support <a href="/partnering-with-hugging-face-deploying-ai-easier-affordable/">deploying models directly from Hugging Face to Workers AI</a>, for an even wider set of AI models. And unlike provisioning a VM with a GPU in a specific data center, we’re building this such that we can treat our whole network as one giant compute resource, running models in the right place at the right time to serve developers’ needs.</p><p>Beyond model inference, we’re doubling down on supporting web standard APIs and making the <a href="/webgpu-in-workers/">WebGPU</a> API available from within the Workers platform. While we’re proud to be recognized as a leading edge platform, we’re not just that —we are a platform for developing full-stack applications, even those that require compute power that just one year ago very few used or needed.</p><p>We’re excited to show you what’s next, including <a href="/secrets-store/">a new way to manage secrets</a> across Cloudflare products, improved observability, and better tools for releasing changes. Every day we see more advanced applications built on our platform, and we’re committed to matching that with tools to serve the most mission-critical workloads — the same ones we use ourselves to build our products on our own platform.</p><p>Download the report <a href="http://www.cloudflare.com/lp/forrester-wave-edge-development-q4-2023/">here</a>.</p> ]]></content:encoded>
            <category><![CDATA[Forrester]]></category>
            <guid isPermaLink="false">5KWOonIRXhvPbMK2rGbYyW</guid>
            <dc:creator>Brendan Irvine-Broque</dc:creator>
            <dc:creator>Dawn Parzych</dc:creator>
        </item>
        <item>
            <title><![CDATA[What AI companies are building with Cloudflare]]></title>
            <link>https://blog.cloudflare.com/ai-companies-building-cloudflare/</link>
            <pubDate>Wed, 27 Sep 2023 13:00:30 GMT</pubDate>
            <description><![CDATA[ Cloudflare enables various AI applications. We asked AI companies using Cloudflare how they leverage our platform for their innovative projects. ]]></description>
            <content:encoded><![CDATA[ <p></p><p>What <a href="https://www.cloudflare.com/learning/ai/what-is-artificial-intelligence/">AI applications</a> can you build with Cloudflare? Instead of us telling you we reached out to a small handful of the numerous AI companies using Cloudflare to learn a bit about what they’re building and how Cloudflare is helping them on their journey.</p><p>We heard common themes from these companies about the challenges they face in bringing new products to market in the ever-changing world of AI ranging from training and deploying models, the ethical and moral judgements of AI, gaining the trust of users, and the regulatory landscape.  One area that is not a challenge is trusting their AI application infrastructure to Cloudflare.</p>
    <div>
      <h3>Azule.ai</h3>
      <a href="#azule-ai">
        
      </a>
    </div>
    
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/Fdy7dt6hKNuOTIh6PKsAc/c0170df331e8fec7d9640726cfa2e395/image2-23.png" />
            
            </figure><p><a href="https://azule.ai">Azule</a>, based in Calgary, Canada, was founded to apply the power of AI to streamline and improve ecommerce customer service. It’s an exciting moment that, for the first time ever, we can now dynamically generate, deploy, and test code to meet specific user needs or integrations. This kind of flexibility is crucial to create a tool like Azule that is designed to meet this demand, offering a platform that can handle complex requirements and provide flexible integration options with other tools.</p><p>The AI space is evolving quickly and that applies to the rapid evolution of <a href="https://www.cloudflare.com/learning/ai/what-is-agentic-ai/">AI agent</a> design patterns. These are essentially frameworks built upon LLM APIs, and they're showing immense potential. Azule effectively allows users to create AI agents which interact with their customers on behalf of their business. It's not just about addressing customer service queries anymore – AI agents can perform significant, ongoing tasks across various industries.</p><p>Azule is built entirely on Cloudflare, except for API calls to OpenAI.</p><p>The application relies on multiple Developer Platform and Cloudflare products and services.  Durable Objects and websockets are used for live chat.</p><blockquote><p><i>“Durable Objects enabled us to build our MVP faster than we could have on any other platform, thanks to Cloudflare's thoughtful product design.” - </i><b><i>Logan Grasby</i></b></p></blockquote><p>Other products used by Azule:</p><ul><li><p>Queues for data processing.</p></li><li><p>R2 for all data storage, including vector storage. Instead of using a vector database service, Azule relies entirely on Cloudflare's R2 and cache API for on-disk vector search.</p></li><li><p>Workers KV for storing frequently accessed configuration data.</p></li><li><p>D1 was implemented for their user database.</p></li><li><p>Constellation (now Workers AI) for various labeling and summarization tasks.</p></li><li><p>Workers for Platforms allows Azule AI to write and deploy custom features for the users.</p></li><li><p>Pages for <a href="https://www.cloudflare.com/developer-platform/solutions/hosting/">hosting</a> our landing page and marketing content.</p></li></ul><p>Other valuable features used include API shield, email workers, the mail channels integration for email, log push, outbound workers, among others!</p><blockquote><p><i>“I firmly believe that AI agents are at home on the web. Everything Cloudflare builds has web optimization in mind and so it only makes sense to invest in the platform. By building on Cloudflare, we've made significant cost reductions, particularly by moving all our search solutions to R2. For example, many of our users want to store large datasets on Azule and make them searchable through their agents. Our previous search solutions, based on Pinecone and Milisearch, would have cost thousands of dollars per month to store and search through just one customer's data. With Cloudflare's R2 and cache API, we can now enable our customer's AI agent to comb through large datasets in less than 900ms, at a fraction of the cost.” - </i><b><i>Logan Grasby</i></b></p></blockquote>
    <div>
      <h3>42able.ai</h3>
      <a href="#42able-ai">
        
      </a>
    </div>
    <p><a href="http://42able.ai">42able</a>, headquartered in Wales, UK, is at the forefront of AI-driven solutions, dedicated to revolutionizing engagement with business documents. Through cutting-edge technology and innovative strategies, the company seeks to streamline, enhance, and redefine the way businesses interact with their documents.</p><p>The modern business landscape is inundated with vast volumes of documents, from contracts and reports to invoices and internal communications. Navigating, understanding, and extracting value from these documents can be time-consuming, error-prone, and often requires significant manual effort.</p><p>42able envisions a future where business documents are not just static pieces of information but dynamic assets that businesses can engage with interactively, efficiently, and intelligently.</p><blockquote><p><i>“Launching an AI product has come with many unique challenges and uncertainties. Users expect AI to be perfect or near-perfect, and are much less forgiving of an AI making an error compared to a human making the same mistake. Decisions about how AI systems should act often involve moral or ethical judgments, which might not be straightforward and can be subject to societal debates. Training and deploying AI models is challenging. Cloudflare's solutions are making it much easier, than managing all the individual parts ourselves.” - </i><b><i>James Finney</i></b></p></blockquote><p>42able chose Cloudflare for fantastic performance in comparison to other cloud providers, in part due to the no cold boot times, competitive pricing, ease of use, fantastic local development features, and brilliant support. Their development times have decreased through the use of:</p><ul><li><p>Workers for all the APIs and re-occurring cron scripts.</p></li><li><p>Pages for all application/platform front-end hosting</p></li><li><p>KV for Angular apps.</p></li><li><p>R2 to store cached personal user data R2.</p></li><li><p>General DNS zone management</p></li><li><p>DDOS protection</p></li><li><p>DNS management</p></li><li><p>Turnstile</p></li><li><p><a href="https://www.cloudflare.com/learning/security/glossary/what-is-zero-trust/">Zero Trust</a> to secure login pages</p></li></ul><p>They are starting to test with Constellation (now Workers AI) to host some of their models and <a href="https://www.cloudflare.com/developer-platform/products/d1/">D1 to support their database needs</a>.</p>
    <div>
      <h3>Layercode</h3>
      <a href="#layercode">
        
      </a>
    </div>
    
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5f546wgPdKgDbdVjkvhN6T/5f785b38828ab47ac4d156744f5bae37/unnamed.png" />
            
            </figure><p><a href="https://layercode.com/"><u>Layercode</u></a> allows developers to build low-latency voice AI agents for web, mobile or phone. Their platform powers the real-time infrastructure required for companies to deliver responsive, engaging voice AI applications at global scale.</p><p>Cloudflare Workers power the core of their voice AI pipelines, ensuring that users experience zero cold starts and reliable performance when processing voice data. In addition, Cloudflare’s Durable Objects and DO SQL provide the consistent execution and storage environment needed for their hosted voice AI agents and various internal features.</p><p>WebRTC is essential for delivering smooth voice AI experiences on both web and mobile platforms. With Cloudflare Realtime’s extensive WebRTC product suite, Layercode can offer WebRTC support at scale, eliminating the typical complexities of hosting and scaling.</p><blockquote><p><i>“Latency is everything when it comes to natural conversation with voice AI. Layercode chose Cloudflare because it’s the best platform for delivering  low-latency voice AI experiences globally.” - </i><b><i>Damien Tanner</i></b></p></blockquote>
    <div>
      <h3>Eclipse AI</h3>
      <a href="#eclipse-ai">
        
      </a>
    </div>
    
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/6uyixNbzaqS2AewVIJ3WI3/d7d46d06c15e1641feae94805e8d0bc5/image3-27.png" />
            
            </figure><p><a href="https://eclipse-ai.com">Eclipse’s</a> mission is to revolutionise the way businesses approach customer feedback. Based in Melbourne, Australia, Eclipse empowers users to make data-driven decisions by leveraging AI for comprehensive customer understanding. If your goals are to; reduce churn, drive growth or improve your customer experience, Eclipse puts the data at your fingertips and provides you actionable insights to drive your business.</p><p>Eclipse allows you to unify your Voice of Customer channels (i.e. phone, video calls, emails, support tickets, public reviews and surveys), the platform analyses it at scale and utilises Generative AI to provide key actions specific to your business. Focused on democratising data driven decision-making, Eclipse AI has launched a Freemium model, leveling the playing field for businesses of all sizes to utilise this tech.</p><blockquote><p><i>“We believe the future of the internet is on the edge and Cloudflare is at the forefront of this revolution with a growing network that covers most major cities around the world. As a startup with limited resources, the Cloudflare developer platform has enabled our dev team to focus on building our product and not be burdened with managing infrastructure. Best of all, it scales automagically with a pay-as-you-go pricing model.” - </i><b><i>Saad Irfani</i></b></p></blockquote><p>Eclipse AI uses:</p><ul><li><p>Cloudflare Workers for the backend API.</p></li><li><p>Cloudflare Pages for the frontend to deliver content across hundreds of cities worldwide.</p></li><li><p>Cloudflare Images to serve cascaded versions of each asset</p></li><li><p>Cloudflare R2 as the object store.</p></li></ul><blockquote><p><i>“As a platform that transcribes video/audio call recordings for VoC analytics, choosing a reliable object-store was an important decision. After the launch of R2 we switched from S3 and noticed a staggering 70% reduction in cost. Overall, we are believers in Cloudflare’s vision and are eagerly awaiting the release of D1 so that our entire stack can be powered by the edge.” - </i><b><i>Saad Irfani</i></b></p></blockquote>
    <div>
      <h3>Embley</h3>
      <a href="#embley">
        
      </a>
    </div>
    
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5MBj29BfoaUH7eH85KElNW/95d406c32cc1e5e53a0d8b65d6ed7a1d/image6-4.png" />
            
            </figure><p><a href="http://embley.com">Embley</a>, based in Sierre, Switzerland, is a Marketplace Automation Platform that powers the future of marketplace commerce by enabling businesses to scale better and faster.</p><p>The platform combines the most advanced technologies such as Artificial Intelligence and Process Mining to strengthen a fast end-to-end business process automation with products tailored to marketplaces businesses.</p><p>Cloudflare powers Embley’s frontend through Cloudflare Pages that serves what they call the “control center” to the users at the edge. The control center is the core of the back-office tools that users use to manage their marketplace operations.  The backend is powered by Workers, providing a serverless execution environment, connected to the frontend through the Cloudflare API Gateway.</p><blockquote><p><i>“The primary reasons for choosing Cloudflare are the powerful serverless products that enable us to run an entire tech stack without having to care about infrastructure. Also, the scalability of Cloudflare’s global network is appealing. Finally, security is embedded into Cloudflare through the Zero Trust platform that enable us to secure both production but also the lower environments including the secured access to internal systems and apps.” - </i><b><i>Laurent Christen</i></b></p></blockquote>
    <div>
      <h3>Chainfuse</h3>
      <a href="#chainfuse">
        
      </a>
    </div>
    
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/6CFJMgydVjnLPp44ap9Ri/0740b60ddea4dc49031335f7f9c55d69/image5-8.png" />
            
            </figure><p><a href="https://www.chainfuse.com">ChainFuse</a>, based in San Francisco, CA, is a multichannel AI platform that assists organizations in collecting and analyzing user feedback on a large scale. Their AI-powered community tool aids support, community, and product teams in garnering valuable insights, facilitating more informed product decisions.</p><blockquote><p><i>“We have used Google Cloud and AWS, but our experience with Cloudflare has particularly stood out. Since 2016, we have consistently chosen Cloudflare for our projects due to their excellent product range and reliable performance. Saying "it just works" is an understatement.” - </i><b><i>Victor Sanchez</i></b></p></blockquote><p>ChainFuse relies on Workers for the core of their backend infrastructure and a range of our <a href="https://www.cloudflare.com/application-services/solutions/">security solutions</a> to secure their applications and employees. WAF and its vast adaptability is a major defense, blocking an average of 48% of all incoming traffic, effectively weeding out known malicious traffic. Additionally, it employs rate limiting to prevent abuse. API Shield, used in conjunction with WAF, intercepts an average of 1.32% of the incoming traffic that manages to bypass WAF. The Zero Trust Gateway not only secures their employees but also is integrated into their product to prevent end users from exploiting the platform for malicious purposes.</p>
    <div>
      <h3>ai.moda</h3>
      <a href="#ai-moda">
        
      </a>
    </div>
    <p><a href="https://www.ai.moda/en/?utm_source=cloudflare&amp;utm_medium=blog&amp;utm_campaign=ai&amp;utm_content=highlight">ai.moda</a>, headquartered in Grand Cayman, Cayman Islands, is building multiple AI tools with a focus on helping bridge humans, developers, and machines together. They’re currently building several <a href="https://www.cloudflare.com/learning/ai/chatgpt-plugins/">ChatGPT plugins</a> (such as CVEs and S3 storage), YourCrowd (MTurk compatible API for humans and bots), and Valkyrie (an automated zero-trust hardening for Linux applications and cloud workloads).</p><p>Plugins like CVEs by ai.moda bring real-time vulnerability information into ChatGPT.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/197jG5wY9XT4wReDWevD39/fef04509d604fc93dd83ebd5d3c781b0/image1-28.png" />
            
            </figure><blockquote><p><i>“By using Workers, we’re able to create SaaS services at a scale and cost that just wouldn’t be possible without. If you want a new ChatGPT plugin, let us know on Friday, and by Monday we can have it developed and shipped in production! The rapid development allowed by Workers is a huge advantage for us.”- </i><b><i>David Manouchehri</i></b></p></blockquote><p>They chose Cloudflare mainly because of the Workers platform. Being able to deploy new code rapidly globally with a single command has greatly simplified their DevOps needs, and they no longer need to worry about whether they have enough resources to scale up.</p><p>ai.moda is a heavy user of Cloudflare Workers, Email Workers, Pages, R2, Durable Objects, Constellation (now Workers AI), Cache API, DMARC management, Access, WAF, logpush, DNS, Health Checks, Zaraz, and D1.</p><p>We share the opinion of many of these companies that witnessing the incredible breadth and versatility of AI technology and the impact it has on organizations and people is astonishing, and we can’t wait to see where this technology takes people. If you’re inspired by reading these stories and want to start building, check out the Startup program and our Cloudflare for AI solutions.</p><p>If you want to share your story about what you’ve built, reach out to us or join the <a href="https://discord.cloudflare.com">Developers Discord</a>.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/6Ps8vAIVxLK9WSvhFnP8ea/2a7cf03b43048ec971dc4c6e52077d93/Workers-companies-AI.png" />
            
            </figure><p>***Since launching the <a href="https://www.cloudflare.com/lp/workers-launchpad/">Launchpad</a> program in 2022, we have showcased a number of exciting startups looking to build the next big application. Whether innovative website designs, content delivery or AI-based features, the internet is waiting for the next big thing.</p><p>With that said, we are proud to announce our revamped <a href="https://workers.cloudflare.com/built-with/">Built With Workers</a> site, an opportunity to showcase your projects with the developer community. Built With Workers will serve as a public facing repository of full-stack applications running on the <a href="https://www.cloudflare.com/developer-platform/products/">Developer Platform</a> to demonstrate how Cloudflare is helping developers build amazing applications.</p><p>Whether you're using <a href="https://www.cloudflare.com/developer-platform/r2/">R2 object storage</a> to store web data, utilizing Workers to manage your application functionality or designing the next big web application UI with Pages, we love seeing what our customers are building!</p><p>To showcase your latest and greatest projects featured on Built with Workers, complete and <a href="https://forms.gle/hK4wNQeXtAUR6Ud19">submit our quick form</a> to share your projects or business with us. Share how you're using Cloudflare products to build the application of your dreams or help expand developer knowledge with our developer community.</p> ]]></content:encoded>
            <category><![CDATA[Birthday Week]]></category>
            <category><![CDATA[Workers Launchpad]]></category>
            <category><![CDATA[Cloudflare Workers]]></category>
            <category><![CDATA[Cloudflare for Startups]]></category>
            <category><![CDATA[Developers]]></category>
            <category><![CDATA[Developer Platform]]></category>
            <guid isPermaLink="false">qoFFjDnlYaJogGeujhejQ</guid>
            <dc:creator>Veronica Marin</dc:creator>
            <dc:creator>Dawn Parzych</dc:creator>
            <dc:creator>Leroy Lasenburg</dc:creator>
        </item>
        <item>
            <title><![CDATA[Recapping Developer Week]]></title>
            <link>https://blog.cloudflare.com/developer-week-2023-wrap-up/</link>
            <pubDate>Mon, 22 May 2023 13:00:45 GMT</pubDate>
            <description><![CDATA[ Developer Week 2023 is officially a wrap. Let’s take a look at everything we shipped last week ]]></description>
            <content:encoded><![CDATA[ <p></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5qWUJQ8FUS29Sd4V8fUad0/227aaf519821a76ac4e8133a1e3bc2ab/image1-60.png" />
            
            </figure><p>Developer Week 2023 is officially a wrap. Last week, we shipped 34 posts highlighting what has been going on with our developer platform and where we’re headed in the future – including new products &amp; features, in-depth tutorials to help you get started, and customer stories to inspire you.</p><p>We’ve loved already hearing feedback from you all about what we’ve shipped:</p><blockquote><p>🤯 Serverless machine learning deployments - OMG! We used to need a team of devops to deploy a todo list MVP, it’s now 3 clicks with workers. They’re gonna do the same with ML workloads. Just like that. Boom. <a href="https://t.co/AcKUQ79fv0">https://t.co/AcKUQ79fv0</a></p><p>— Thibaut Tiberghien (@tibotiber) <a href="https://twitter.com/tibotiber/status/1658295956574703616?ref_src=twsrc%5Etfw">May 16, 2023</a></p></blockquote><blockquote><p>.<a href="https://twitter.com/Cloudflare?ref_src=twsrc%5Etfw">@Cloudflare</a> is totally rocking it with these AI releases 🤘 <a href="https://t.co/7dQb6TUWg3">https://t.co/7dQb6TUWg3</a></p><p>— Philipp Tsipman (@ptsi) <a href="https://twitter.com/ptsi/status/1658695906483642371?ref_src=twsrc%5Etfw">May 17, 2023</a></p></blockquote><blockquote><p>Love this direction, for open source, for demos and running things on edge.</p><p>It's still in development, but as someone who've built an AI product on top of Cloudflare and has been asking for something like this, I'm really excited! <a href="https://t.co/AnywRDqecb">https://t.co/AnywRDqecb</a></p><p>— Altryne - targum.video (@altryne) <a href="https://twitter.com/altryne/status/1658134302700470274?ref_src=twsrc%5Etfw">May 15, 2023</a></p></blockquote><blockquote><p>I've been waiting for this. Next on my list is a <a href="https://twitter.com/remix_run?ref_src=twsrc%5Etfw">@remix_run</a> app using <a href="https://twitter.com/CockroachDB?ref_src=twsrc%5Etfw">@CockroachDB</a> deployed to Workers. The new multi-region capabilities of <a href="https://twitter.com/hashtag/CockroachDB?src=hash&amp;ref_src=twsrc%5Etfw">#CockroachDB</a> <a href="https://twitter.com/hashtag/serverless?src=hash&amp;ref_src=twsrc%5Etfw">#serverless</a> should pair wonderfully with <a href="https://twitter.com/Cloudflare?ref_src=twsrc%5Etfw">@Cloudflare</a> deployments. <a href="https://t.co/RwnJ2K0ToY">https://t.co/RwnJ2K0ToY</a></p><p>— Aydrian Howard (@itsaydrian) <a href="https://twitter.com/itsaydrian/status/1658480164152672260?ref_src=twsrc%5Etfw">May 16, 2023</a></p></blockquote><blockquote><p>Yes! Loving this! I definitely this is the right direction and will help the general DevX and onboarding to the platform a lot ❤️! <a href="https://t.co/rEQWreeS96">https://t.co/rEQWreeS96</a></p><p>— Adrien Baron (@BaronAdri) <a href="https://twitter.com/BaronAdri/status/1659094809133342720?ref_src=twsrc%5Etfw">May 18, 2023</a></p></blockquote><p>We hope you’re able to spend the coming weeks slinging some code and experimenting with some of the new tools we shipped last week. As you’re building, join us in our <a href="http://discord.cloudflare.com/">developers discord</a> and let us know what you think.</p><p>In case you missed any of our announcements here’s a handy recap:</p>
    <div>
      <h3>AI announcements</h3>
      <a href="#ai-announcements">
        
      </a>
    </div>
    <table>
<thead>
  <tr>
    <th>Announcement</th>
    <th>Summary</th>
  </tr>
</thead>
<tbody>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/ai-will-transform-programming/">Batteries included: how AI will transform the who and how of programming </a></td>
    <td>The emergence of large language models (LLMs) is going to change the way developers write, debug, and modify code. Developer Platforms need to evolve to integrate AI capabilities to assist developers in their journeys. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/introducing-constellation/">Introducing Constellation, bringing AI to the Cloudflare stack </a></td>
    <td>Run pre-trained machine learning models and inference tasks on Cloudflare’s global network with Constellation AI. We’ll maintain a catalog of verified and ready-to-use models, or you can upload and train your own. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/introducing-cursor-the-ai-assistant-for-docs/">Introducing Cursor: the Cloudflare AI Assistant</a></td>
    <td>When getting started with a new technology comes a lot of questions on how to get started. Finding answers quickly is a time-saver. To help developers build in the fastest way possible we’ve introduced Cursor,  an experimental AI assistant, to answer questions you may have about the Developer Platform. The assistant responds with both text and relevant links to our documentation to help you go further. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/cloudflare-chatgpt-plugins/">Query Cloudflare Radar and our docs using ChatGPT plugins </a></td>
    <td>ChatGPT, recently allowed the ability for developers to create custom extensions to make ChatGPT even more powerful.  It’s now possible to provide guidance to the conversational workflows within ChatGPT such as up-to-date statistics and product information. We’ve published plugins for Radar and our Developer Documentation and a tutorial showing how you can <a href="http://staging.blog.mrk.cfdata.org/magic-in-minutes-how-to-build-a-chatgpt-plugin-with-cloudflare-workers/">build your own plugin using Workers</a>. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/zero-trust-ai-security/">A complete suite of Zero Trust security tools to help get the most from AI</a> </td>
    <td>With any new technology comes concerns about risk and AI is no different. If you want to build with AI and maintain a Zero Trust security posture, <a href="http://staging.blog.mrk.cfdata.org/zero-trust-ai-security/">Cloudflare One offers a collection of features to build with AI</a> without increased risk. We’ve also compiled some best practices around securing your LLM. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/cloudflare-r2-mosaicml-train-llms-anywhere-faster-cheaper/">Cloudflare R2 and MosaicML enable training LLMs on any compute, anywhere in the world, with zero switching costs</a></td>
    <td>Training large language models requires massive amount of compute which has led AI companies to look at multi-cloud architectures, with R2 and MosaicML companies can build these infrastructures at a fraction of the cost. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/r2-super-slurper-ga/">The S3 to R2 Super Slurper is now Generally Available</a></td>
    <td>After partnering with hundreds of early adopters to migrate objects to R2 during the beta, the Super Slurper is now generally available. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/ai-startups-eligible/">A raft of Cloudflare services for AI startups</a></td>
    <td>AI startups no longer need affiliation with an accelerator or an employee referral to gain access to the Startup Program.  Bootstrapped AI startups can apply today to get free access to Cloudflare services including R2, Workers, Pages, and a host of other security and developer services. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/secure-generative-ai-applications/">How to secure Generative AI applications</a></td>
    <td>11 tips for securing your generative AI application. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/langchain-and-cloudflare/">Using LangChain JS and Cloudflare Workers together</a></td>
    <td>A tutorial on building your first LangChainJS and Workers application to build more sophisticated applications by switching between LLMs or chaining prompts together.</td>
  </tr>
</tbody>
</table>
    <div>
      <h3>Data announcements</h3>
      <a href="#data-announcements">
        
      </a>
    </div>
    <table>
<thead>
  <tr>
    <th>Announcement</th>
    <th>Summary</th>
  </tr>
</thead>
<tbody>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/announcing-database-integrations/">Announcing database integrations: a few clicks to connect to Neon, PlanetScale, and Supabase on Workers</a></td>
    <td>We’ve partnered with other database providers, including Neon, PlanetScale, and Supabase, to make authenticating and connecting back to your databases there just work, without having to copy-paste credentials and connection strings back and forth.</td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/workers-tcp-socket-api-connect-databases/">Announcing connect() - a new API for creating TCP sockets from Cloudflare Workers </a></td>
    <td>Connect back to existing PostgreSQL and MySQL databases directly from Workers with outbound TCP sockets allowing you to connect to any database when building with Workers. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/d1-turning-it-up-to-11/">D1: We turned it up to 11</a></td>
    <td>D1 is now not only significantly faster, but has a raft of new features, including the ability to time travel: restore your database to any minute within the last 30 days, without having to make a manual backup.</td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/announcing-workers-smart-placement/">Smart Placement speed up applications by moving code close to your backend - no config needed</a></td>
    <td>Bringing compute closer to the end user isn’t always the right answer to improve performance. Smart Placement for Workers and Pages Functions moves compute to the optimal location whether that is closer to the end user or closer to backend services and data. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/snowflake-r2-global-data-lake/">Use Snowflake with R2 to extend your global data lake</a></td>
    <td>Get valuable insights from your data when you use Snowflake to query data stored in your R2 data lake and load data from R2 into Snowflake’s Data Cloud. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/r2-is-faster-than-s3/">Developer Week Performance Update: Spotlight on R2</a></td>
    <td>Retrieving objects from storage needs to be fast. R2 is 20-40% faster than Amazon S3 when serving media content via public access. </td>
  </tr>
</tbody>
</table>
    <div>
      <h3>Developer experience announcements</h3>
      <a href="#developer-experience-announcements">
        
      </a>
    </div>
    <table>
<thead>
  <tr>
    <th>Announcement</th>
    <th>Summary</th>
  </tr>
</thead>
<tbody>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/making-cloudflare-for-web/">Making Cloudflare the best place for your web applications</a></td>
    <td>Create Cloudflare CLI (C3) is a companion CLI to Wrangler giving you a single entry-point to configure Cloudflare via CLI. Pick your framework, all npm dependencies are installed, and you’ll receive a URL for where your application was deployed. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/improved-quick-edit/">A whole new Quick Edit in Cloudflare Workers</a></td>
    <td>QuickEdit for Workers powered by VSCode giving you a familiar environment to edit Workers directly in the dash. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/pages-and-workers-are-converging-into-one-experience/">Bringing a unified developer experience to Cloudflare Workers and Pages</a></td>
    <td>Manage all your Workers scripts and Pages projects from a single place in the Cloudflare dashboard. Over the next year we’ll be working to converge these two separate experiences into one eliminating friction when building.</td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/moderizing-cloudflare-pages-builds-toolbox/">Modernizing the toolbox for Cloudflare Pages builds</a></td>
    <td>Now in beta, the build system for Pages includes the latest versions of Node.js, Python, Hugo, and more. You can opt in to use this for existing projects or stay on the existing system, so your builds won’t break. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/wrangler3/">Improved local development with Wrangler and workerd</a></td>
    <td>Having a local development environment that mimics production as closely as possible helps to ensure everything runs as expected in production. You can test every aspect prior to deployment. Wrangler 3 now leverages Miniflare3 based on workerd with local-by-default development. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/updated-tos/">Goodbye, section 2.8 and  hello to Cloudflare’s new terms of service</a></td>
    <td>Our terms of service were not clear about serving content hosted on the Developer Platform via our CDN. We’ve made it clearer that customers can use the CDN to serve video and other large files  stored on the Developer Platform including Images, Pages, R2, and Stream. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/workers-node-js-apis-stream-path/">More Node.js APIs in Cloudflare Workers-Streams, Pat, StringDecoder</a></td>
    <td>We’ve expanded support Node.js APIs to increase compatibility with the existing ecosystem of open source npm packages.</td>
  </tr>
</tbody>
</table>
    <div>
      <h3>But wait, there’s more</h3>
      <a href="#but-wait-theres-more">
        
      </a>
    </div>
    <table>
<thead>
  <tr>
    <th>Announcement</th>
    <th>Summary</th>
  </tr>
</thead>
<tbody>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/powering-platforms-on-workers/">How Cloudflare is powering the next generation of platforms with Workers</a> </td>
    <td>A retrospective on the first year of Workers for Platform, what’s coming next, and featuring how customers like Shopify and Grafbase are building with it. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/building-cloudflare-on-cloudflare/">Building Cloudflare on Cloudflare</a></td>
    <td>A technical deep dive into how we are rearchitecting internal services to use Workers.  </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/secrets-store/">Announcing Cloudflare Secrets Store</a></td>
    <td>A centralized repository to store sensitive data for use across all of Cloudflare’s products. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/messages-at-your-speed-with-concurrency-and-explicit-acknowledgement/">Cloudflare Queues: messages at your speed with consumer concurrency and explicit acknowledgement</a></td>
    <td>Announcing new features for Queues to ensure queues don’t fall behind, and processing time doesn’t slow down. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/browser-rendering-open-beta/">Workers Browser Rendering API enters open beta</a></td>
    <td>Deploy a Worker script that requires Browser Rendering capabilities through Wrangler. </td>
  </tr>
</tbody>
</table>
    <div>
      <h3>Watch on Cloudflare TV</h3>
      <a href="#watch-on-cloudflare-tv">
        
      </a>
    </div>
    <p>If you missed any of the announcements or want to also view the associated Cloudflare TV segments, where blog authors went through each announcement, you can now watch all the <a href="https://cloudflare.tv/shows/developer-week">Developer Week videos on Cloudflare TV</a>.</p> ]]></content:encoded>
            <category><![CDATA[Developers]]></category>
            <category><![CDATA[Developer Week]]></category>
            <category><![CDATA[Product News]]></category>
            <guid isPermaLink="false">NqW2I3nDOkf5dszWns7si</guid>
            <dc:creator>Ricky Robinett</dc:creator>
            <dc:creator>Dawn Parzych</dc:creator>
        </item>
        <item>
            <title><![CDATA[ICYMI: Developer Week 2022 announcements]]></title>
            <link>https://blog.cloudflare.com/icymi-developer-week-2022-announcements/</link>
            <pubDate>Fri, 18 Nov 2022 21:13:51 GMT</pubDate>
            <description><![CDATA[ This week we made over 30 announcements, in case you missed any here’s a quick round-up.  ]]></description>
            <content:encoded><![CDATA[ <p><i></i></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5hJumg76O4azWrTEzO7r35/c611fec9c69576a134d3fa3ee61f714a/2022-Developer-Week-Hero-Dark_b-1.png" />
            
            </figure><p>Developer Week 2022 has come to a close. Over the last week we’ve shared with you 31 posts on what you can build on Cloudflare and our vision and roadmap on where we’re headed. We shared product announcements, customer and partner stories, and provided technical deep dives. In case you missed any of the posts here’s a handy recap.</p>
    <div>
      <h2>Product and feature announcements</h2>
      <a href="#product-and-feature-announcements">
        
      </a>
    </div>
    <table>
<thead>
  <tr>
    <th>Announcement</th>
    <th>Summary</th>
  </tr>
</thead>
<tbody>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/welcome-to-the-supercloud-and-developer-week-2022/">Welcome to the Supercloud (and Developer Week 2022)</a></td>
    <td>Our vision of the cloud -- a model of cloud computing that promises to make developers highly productive at scaling from one to Internet-scale in the most flexible, efficient, and economical way.</td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/cloudflare-queues-open-beta">Build applications of any size on Cloudflare with the Queues open beta</a></td>
    <td>Build performant and resilient distributed applications with Queues. Available to all developers with a paid Workers plan. 
</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/cloudflare-r2-super-slurper/">Migrate from S3 easily with the R2 Super Slurper</a></td>
    <td>A tool to easily and efficiently move objects from your existing storage provider to R2. 
</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/cloudflare-workers-templates/">Get started with Cloudflare Workers with ready-made templates</a></td>
    <td>See what’s possible with Workers and get building faster with these starter templates. 
</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/cache-reserve-open-beta/">Reduce origin load, save on cloud egress fees, and maximize cache hits with Cache Reserve</a></td>
    <td>Cache Reserve is graduating to open beta – users can now test and integrate it into their content delivery strategy without any additional waiting. 
</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/announcing-logs-engine/">Store and process your Cloudflare Logs... with Cloudflare</a></td>
    <td>Query Cloudflare logs stored on R2. 
</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/d1-open-alpha/">UPDATE Supercloud SET status = 'open alpha' WHERE product = 'D1'</a></td>
    <td>D1, our first global relational database, is in open alpha. Start building and share your feedback with us. 
</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/introducing-workers-browser-rendering-api/">Automate an isolated browser instance with just a few lines of code</a></td>
    <td>The Browser Rendering API is an out of the box solution to run browser automation tasks with Puppeteer in Workers.
</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/mutual-tls-for-workers/">Bringing authentication and identification to Workers through Mutual TLS</a></td>
    <td>Send outbound requests with Workers through a mutually authenticated channel. 
</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/pages-function-goes-GA/">Spice up your sites on Cloudflare Pages with Pages Functions General Availability</a></td>
    <td>Easily add dynamic content to your Pages projects with Functions.  </td>    
  </tr>
     <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/launchpad-fall-22/">Announcing the first Workers Launchpad cohort and growth of the program to $2 billion</a></td>
    <td>We were blown away by the interest in the Workers Launchpad Funding Program and are proud to introduce the first cohort. 
</td>    
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/snippets-announcement">The most programmable Supercloud with Cloudflare Snippets</a></td>
    <td>Modify traffic routed through the Cloudflare CDN without having to write a Worker. 
</td>    
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/deployments-for-workers">Keep track of Workers’ code and configuration changes with Deployments</a></td>
    <td>Track your changes to a Worker configuration, binding, and code. 
</td>    
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/workers-logpush-GA">Send Cloudflare Workers logs to a destination of your choice with Workers Trace Events Logpush</a></td>
    <td>Gain visibility into your Workers when logs are sent to your analytics platform or <a href="https://www.cloudflare.com/learning/cloud/what-is-object-storage/">object storage</a>. Available to all users on a Workers paid plan. </td>    
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/improving-workers-types">Improved Workers TypeScript support</a></td>
    <td>Based on feedback from users we’ve improved our types and are open-sourcing the automatic generation scripts. </td>    
  </tr>
    

</tbody>
</table>
    <div>
      <h3>Technical deep dives</h3>
      <a href="#technical-deep-dives">
        
      </a>
    </div>
    <table>
<thead>
  <tr>
    <th>Announcement</th>
    <th>Summary</th>
  </tr>
</thead>
<tbody>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/standards-compliant-workers-api/">The road to a more standards-compliant Workers API</a></td>
      <td>An update on the work the <a href="https://github.com/wintercg">WinterCG</a> is doing on the creation of common API standards in JavaScript runtimes and how Workers is implementing them.   
</td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/r2-rayid-retrieval">Indexing millions of HTTP requests using Durable Objects
</a></td>
    <td>Indexing and querying millions of logs stored in R2 using Workers, Durable Objects, and the Streams API.  </td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/building-a-better-developer-experience-through-api-documentation">Iteration isn't just for code: here are our latest API docs</a></td>
    <td>We’ve revamped our API reference documentation to standardize our API content and improve the overall developer experience when using the Cloudflare APIs. </td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/making-static-sites-dynamic-with-cloudflare-d1">Making static sites dynamic with D1</a></td>
    <td>A template to build a D1-based comments API. </td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/open-api-transition">The Cloudflare API now uses OpenAPI schemas</a></td>
    <td>OpenAPI schemas are now available for the Cloudflare API. </td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/pages-full-stack-frameworks">Server-side render full stack applications with Pages Functions</a></td>
    <td>Run server-side rendering in a Function using a variety of frameworks including Qwik, Astro, and SolidStart.</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/fragment-piercing">Incremental adoption of micro-frontends with Cloudflare Workers</a></td>
    <td>How to replace selected elements of a legacy client-side rendered application with server-side rendered fragments using Workers. </td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/technology-behind-radar2/">How we built it: the technology behind Cloudflare Radar 2.0</a></td>
    <td>Details on how we rebuilt Radar using Pages, Remix, Workers, and R2. </td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/terraforming-cloudflare-at-cloudflare">How Cloudflare uses Terraform to manage Cloudflare</a></td>
    <td>How we made it easier for our developers to make changes with the Cloudflare Terraform provider. </td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/network-performance-update-developer-week/">Network performance Update: Developer Week 2022</a></td>
    <td>See how fast Cloudflare Workers are compared to other solutions.</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/using-analytics-engine-to-improve-analytics-engine">How Cloudflare instruments services using Workers Analytics Engine</a></td>
    <td>Instrumentation with Analytics Engine provides data to find bugs and helps us prioritize new features. </td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/miniflare-and-workerd">Doubling down on local development with Workers:Miniflare meets workerd</a></td>
    <td>Improving local development using Miniflare3, now powered by workerd.</td>
  </tr>
 
</tbody>
</table>
    <div>
      <h3>Customer and partner stories</h3>
      <a href="#customer-and-partner-stories">
        
      </a>
    </div>
    <table>
<thead>
  <tr>
    <th>Announcement</th>
    <th>Summary</th>
  </tr>
</thead>
<tbody>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/devcycle-customer-story">Cloudflare Workers scale too well and broke our infrastructure, so we are rebuilding it on Workers</a></td>
    <td>How DevCycle re-architected their feature management tool using Workers. </td>
  </tr>
  <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/neon-postgres-database-from-workers">Easy Postgres integration with Workers and Neon.tech</a></td>
    <td>Neon.tech solves the challenges of connecting to Postgres from Workers</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/xata-customer-story">Xata Workers: client-side database access without client-side secrets</a></td>
    <td>Xata uses Workers for Platform to reduce security risks of running untrusted code.</td>
  </tr>
    <tr>
    <td><a href="http://staging.blog.mrk.cfdata.org/twilio-segment-sdk-powered-by-cloudflare-workers">Twilio Segment Edge SDK powered by Cloudflare Workers</a></td>
    <td>The Segment Edge SDK, built on Workers, helps applications collect and track events from the client, and get access to realtime user state to personalize experiences.</td>
  </tr>
</tbody>
</table>
    <div>
      <h3>Next</h3>
      <a href="#next">
        
      </a>
    </div>
    <p>And that’s it for Developer Week 2022. But you can keep the conversation going by joining our <a href="https://discord.gg/cloudflaredev">Discord Community</a>.</p> ]]></content:encoded>
            <category><![CDATA[Developer Week]]></category>
            <category><![CDATA[Developers]]></category>
            <category><![CDATA[Serverless]]></category>
            <category><![CDATA[Product News]]></category>
            <category><![CDATA[Supercloud]]></category>
            <category><![CDATA[undefined]]></category>
            <category><![CDATA[D1]]></category>
            <category><![CDATA[R2 Super Slurper]]></category>
            <category><![CDATA[Cloudflare Workers]]></category>
            <category><![CDATA[Developer Platform]]></category>
            <guid isPermaLink="false">5T3oI2mNgSH8cND974FYm5</guid>
            <dc:creator>Dawn Parzych</dc:creator>
        </item>
        <item>
            <title><![CDATA[Platform Week wrap-up]]></title>
            <link>https://blog.cloudflare.com/platform-week-2022-wrap-up/</link>
            <pubDate>Tue, 31 May 2022 13:41:53 GMT</pubDate>
            <description><![CDATA[ Recently, during Platform Week, we made a number of announcements expanding what’s possible with the Developer Platform. Let’s take a look at some of these and what this enables you to build ]]></description>
            <content:encoded><![CDATA[ 
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/7G15FSzkri7R2fIszaa4Xs/83465d23e2739fc1ea517b228da4ce41/Platform-Week-Wrap-up.png" />
            
            </figure><p>A comprehensive developer platform includes all the necessary storage, compute, and services to effectively deliver an application. Compute that runs globally and auto-scales to execute code without having to worry about the underlying infrastructure; storage for user information, objects, and key-value pairs; and all the related services including delivering video, optimizing images, managing third-party components, and capturing telemetry.</p><p>Whether you’re looking to modernize legacy backend infrastructure or are building a brand-new application from the ground up the Cloudflare Developer Platform provides all the building blocks you need to deliver an application on the edge.</p><p>Recently, during Platform Week, we made a number of announcements expanding what’s possible with the Developer Platform. Let’s take a look at some of the announcements we made and what this enables you to build. For a complete list visit the <a href="https://www.cloudflare.com/platform-week/">Platform Week hub</a>.</p>
    <div>
      <h3>Compute</h3>
      <a href="#compute">
        
      </a>
    </div>
    <p>The core of our compute offering is Workers, our serverless runtime. Workers integrates with other Cloudflare offerings helping you route requests, take action on bots, <a href="/sending-email-from-workers-with-mailchannels">send an email,</a> or <a href="/announcing-route-to-workers">route and filter emails</a>, just to name a few.</p><p>There are times when you’ll want to use multiple Workers to perform an action, Workers now have the ability to <a href="/service-bindings-ga">call another Worker</a>. And while that Worker is sitting idly you aren’t charged. If serverless computing is about paying for what you use, why should you be charged when a Worker is waiting for a response?</p><p>Serverless compute works great for an application that’s in production, but what about when you’re in development?  You need the ability to run and test locally, that’s why we’ve announced that the <a href="/workers-open-source-announcement">Workers runtime will be available via an open-source license</a> later this year.</p><p>But it’s not just the flexibility to run locally that’s important, the worry of vendor lock-in is real. You need the ability to move your application without significant efforts, that’s where the <a href="/introducing-the-wintercg">WinterCG</a> comes in. Cloudflare is working with core contributors from Deno and Node.js to create server-side API standards to enable just this.</p>
    <div>
      <h3>Storage</h3>
      <a href="#storage">
        
      </a>
    </div>
    <p>Applications, of course, cannot exist without storage. And when it comes to storage, there is no one-size-fits-all solution: <a href="https://www.cloudflare.com/learning/cloud/what-is-object-storage/">object storage</a> is great for images, but maybe not for storing user information; meanwhile, databases are great for storing user information, but not videos, and even when it comes to databases, there are so many kinds.  Developers need a variety of storage solutions, there’s no one-size-fits all storage offering.</p><p>As of Platform Week we expanded our storage products, to include <a href="/r2-open-beta">R2 (which is now in beta)</a>, and <a href="/introducing-d1">D1 SQLite database</a>. These are in addition to the existing products, such as Workers KV, Durable Objects, and even Cloudflare’s cache!</p><p>You have the flexibility to choose the right tool for the task. Part of being flexible means, not encountering <a href="https://www.cloudflare.com/learning/cloud/what-is-object-storage/">egress charges</a> to access or move your data, and you should always have the ability to integrate with whichever tool you want.</p>
    <div>
      <h3>Developer Services</h3>
      <a href="#developer-services">
        
      </a>
    </div>
    <p>The Developer Platform doesn’t end with the compute power and storage. It also includes a full range of services to build your Jamstack application, optimize the images you serve, and stream videos.</p><p><a href="https://pages.cloudflare.com/">Pages</a> simplifies the build and deploy process for Jamstack applications. Too much time is spent waiting. Waiting for builds to compile, when only a few lines of code were changed only to find out there was an error. Pages now reduces your waiting time with a <a href="/cloudflare-pages-build-improvements/">new build infrastructure</a>, and the ability to view logs as a build is in progress to immediately see if something has gone wrong. (And speaking of logs, did you know you can <a href="/logs-r2">store your logs on R2</a>?)</p><p>To get started with Pages, you can either use our Git-integrations or <a href="/cloudflare-pages-direct-uploads">deploy pre-built assets directly.</a> Functionality on your static sites can be extended via Workers or the new <a href="/cloudflare-pages-plugins">Pages Plugins</a>.</p><p>If you don’t have a Jamstack application, we still have services related to media (which is an essential part of any website). Store, resize, and optimize your Images or <a href="https://www.cloudflare.com/developer-platform/solutions/live-streaming/">deliver live streams</a>.</p><p>In addition to building and delivering the applications there is a host of observability solutions to view how everything is performing. The reliability of your systems is impacted when you don’t have visibility into how they are performing. We continue to expand the tools available to track performance of your applications through internal tools and partnerships. <a href="/logpush-for-workers/">Logpush for Workers,</a> <a href="/announcing-pubsub-programmable-mqtt-messaging/">Pub/sub</a>, and <a href="/workers-analytics-engine/">Workers Analytics Engine</a> are the latest additions giving you the ability to publish, gather, and process events, telemetry or sensor data, and create visualizations from the data.</p>
    <div>
      <h3>Application and network services</h3>
      <a href="#application-and-network-services">
        
      </a>
    </div>
    <p>The benefits of building on the Cloudflare Developer Platform is the interoperability of solutions within our application and network services.</p><p>With the beta release of R2 we also announced <a href="/introducing-cache-reserve">Cache Reserve</a>. When content is expired or evicted from our CDN a cache reserve can be configured in R2 to stay in-network and avoid having to pay egress fees refreshing content from the origin.</p><p>Connectivity and communication across distributed systems requires network address translation. <a href="/magic-nat/">Magic NAT</a> makes it easy for systems to communicate across private subnets with overlapping IP space without having to backhaul traffic, deploy gateways in multiple zones, incur fees, or deal with latency.</p>
    <div>
      <h3>Ecosystem of providers</h3>
      <a href="#ecosystem-of-providers">
        
      </a>
    </div>
    <p>It’s not enough to have a suite of tools and services, you need to integrate and extend them with your existing vendors. The <a href="/developer-platform-ecosystem/">Developer Platform Ecosystem</a> exists to do exactly this. We continue to expand our directory giving you the peace of mind that the Cloudflare Developer Platform will work for you.</p>
    <div>
      <h3>How this all fits together</h3>
      <a href="#how-this-all-fits-together">
        
      </a>
    </div>
    <p>Whether you want to modify requests or responses on their way to or from the origin, build a Jamstack application, or build an entire dynamic application without any origin the Cloudflare Developer Platform has what you need. Instead of serving your application from a single region where your servers are, you can serve your application from “Region Earth.”</p><p>The applications you can build are limitless with compute, storage, and comprehensive developer services. Build your app, maintain state, upload your images directly to R2 and have them optimized via Images before being delivered by the CDN.</p><p>Unnecessary human decisions such as which region your objects should be stored in, become system decisions when the region is chosen automatically based on a request. When cached content is expired or evicted from cache, Cache Reserve is there to retrieve the object locally from R2 instead of traversing the Internet to the origin.</p><p>Once you have the application up and running you can visualize events and telemetry to ensure a reliable and fast application.</p><p>Here’s a small sample of what you can do with the Developer Platform:</p><ul><li><p>Build a collaborative app like a <a href="https://github.com/cloudflare/templates/tree/main/worker-example-wordle">multi-player Wordle game</a>.</p></li><li><p>Deliver a newsletter, allow users to <a href="https://abyteofcoding.com/blog/oauth-with-cloudflare-workers-on-a-statically-generated-site/">sign up using Oauth</a>. Or aggregate articles into a <a href="https://newsfeed.aaronsdevera.com/">newsfeed</a>.</p></li><li><p>Create a website with <a href="https://simonprickett.dev/bus-stop-api-with-cloudflare-workers/">up-to-date train departures and arrivals</a>.</p></li></ul><p>With over 35 announcements made during Platform Week we can’t wait to see what you’re going to build.</p> ]]></content:encoded>
            <category><![CDATA[Platform Week]]></category>
            <category><![CDATA[Product News]]></category>
            <category><![CDATA[undefined]]></category>
            <category><![CDATA[Cloudflare Workers]]></category>
            <category><![CDATA[Developers]]></category>
            <category><![CDATA[Cache Reserve]]></category>
            <category><![CDATA[Developer Platform]]></category>
            <category><![CDATA[Connectivity Cloud]]></category>
            <guid isPermaLink="false">5mE3va5sepXKO7a05esmvG</guid>
            <dc:creator>Dawn Parzych</dc:creator>
        </item>
        <item>
            <title><![CDATA[Our growing Developer Platform partner ecosystem]]></title>
            <link>https://blog.cloudflare.com/developer-platform-ecosystem/</link>
            <pubDate>Thu, 12 May 2022 12:58:46 GMT</pubDate>
            <description><![CDATA[ Cloudflare’s Developer Platform Ecosystem continues to expand ensuring you can integrate with the tools you use, or want to use ]]></description>
            <content:encoded><![CDATA[ <p></p><p>Deploying an application to the cloud requires a robust network, ample storage, and compute power. But that only covers the architecture, it doesn’t include all the other <a href="https://www.cloudflare.com/application-services/">tools and services</a> necessary to build, deploy, and support your applications. It’s easy to get bogged down in researching whether everything you want to use works together, and that takes time away from actually developing and building.</p><p>Cloudflare is focused on building a modern cloud with a developer-first experience. That developer experience includes creating an ecosystem filled with the tools and services developers need.</p><p>Deciding to build an application starts with the planning and design elements. What programming languages, frameworks, or runtimes will be used? The answer to that question can influence the architecture and hosting decisions. Choosing a runtime may lock you into using specific vendors. Our goal is to provide flexibility and eliminate the friction involved when wanting to migrate on to (or off) Cloudflare.</p><p>You can’t forget the tools necessary for configuration and interoperability. This can include areas such as authentication and infrastructure management. You have multiple pieces of your application that need to talk with one another to ensure a secure and seamless experience. We support and build standards for compatibility and to simplify the configuration and interoperability when deploying your applications.</p><p>During the build process and after your application has been deployed, it is essential to test and verify that things are working properly. This is where logging, analytics, and alerting come in. Having the ability to quickly be notified when something isn’t working properly is part of the equation. The other part is reducing the context switching among various debugging tools and applications to quickly resolve the issue.</p><p>And finally, improving your application through iterating and extending functionality. This can come from adding plug-ins from third party providers, running A/B tests to determine whether a feature is moving in the right direction, or not.</p><p>At Cloudflare our mission is to help build a better Internet, all of these elements are necessary to achieve this. Our focus is on providing the network, storage, and compute power to deliver apps. We look to partners to help in the other areas and provide an ecosystem. Our intention with this strategy is to get out of the way, so developers can build faster and safer.</p><p>To achieve our mission we look for partners with similar philosophies. We’ve previously announced integrations around</p><ul><li><p><a href="/cloudflare-pages-headless-cms-partnerships/">Content platforms</a> to help with the planning, creating and building of applications.</p></li><li><p><a href="/partnership-announcement-db/">Database connectivity</a></p></li><li><p>And <a href="/observability-ecosystem/">observability</a> to assist with debugging and troubleshooting</p></li></ul><p>Everything we do is built on the foundation of the open Internet and open standards. We want to provide choice to developers to pick from a variety of tools and may the best solution win. We believe developers should have the freedom and flexibility to choose the best tool ‘for their work’ not the best for within a ‘locked-in-platform’.</p><p>We understand that partnering is key to achieving the above goal. Today, we’re excited to announce a growing ecosystem of partners who are tapping into our world’s best network. Our developer platform products and partner products fit seamlessly into existing stacks and improve developer productivity through simple development and deploy workflows.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2yfgp9qHGITw79OvJDtSTy/aa728a66080187e52e287cdb0324713d/image5-7.png" />
            
            </figure>
    <div>
      <h3>Source, build and deploy partners:</h3>
      <a href="#source-build-and-deploy-partners">
        
      </a>
    </div>
    <p>Along with having the best network in the world, we also have really good compute and database products. However, for developers to plan, build and continuously iterate, they need a host of other services to work together seamlessly to have a great building experience end to end. This is why we partnered with <a href="/cloudflare-pages-partners-with-gitlab/">DevOps platforms</a> and <a href="/cloudflare-pages-headless-cms-partnerships/">CMSs</a> to make the entire development lifecycle better.</p><p>On the DevOps front, developers can create new Pages projects by connecting thier repos stored on GitLab or GitHub and make site changes there via the usual git commands.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2kmWVBqMccVBxDxXmCtXqE/023f23bd5f740a0b9951488a3ca73eda/image4-12.png" />
            
            </figure><blockquote><p>“Developers can be more productive when they create, test, secure, and deploy software from a single DevOps application instead of bouncing between multiple different tools. Cloudflare Pages’ integration with GitLab makes it easier for joint users to develop and deploy new code to Cloudflare’s network using the same syntax and git commands they’re already comfortable using.”<b>— Michael LeBeau, Alliance Manager at GitLab</b></p></blockquote><p>Also, on the CMS front, we have built deploy hooks that are the key to what allows developers to connect and trigger deployments in Cloudflare Pages via updates made in their favorite headless CMSs.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5fr6GA1bVMeAZRwZdzMnQj/2613d2d8ca0a1c104543bfcce36eef66/image1-29.png" />
            
            </figure><blockquote><p>“With this integration, our customers can work more efficiently and cross-functionally with their teams. Marketing teams can update Contentful directly to automatically trigger deployments without relying on their developers to update any of their code base, which results in a better, more productive experience for all teams involved.”<b>— Jeff Blattel, Director of Technical Partnerships at Contentful</b></p></blockquote><blockquote><p>“We’re delighted to partner with Cloudflare and excited by this new release from Cloudflare Pages. At Sanity, we care deeply about people working with content on our platform. Cloudflare’s new deploy hooks allow developers to automate builds for static sites based on content changes, which is a huge improvement for content creators. Combining these with structured content and our GROQ-powered Webhooks, our customers can be strategic about when these builds should happen. We’re stoked to be part of this release and can’t wait to see what the community will build with Sanity and Cloudflare!”<b>— Even Westvang, Co-founder, Sanity.io</b></p></blockquote><blockquote><p>“At Strapi, we’re excited about this partnership with Cloudflare because it enables developers to abstract away the complexity of deploying changes to production for content teams. By using the Deploy Hook for Strapi, everyone can push new content and updates quickly and autonomously.”<b>— Pierre Burgy, CEO, Strapi.io</b></p></blockquote><p><b>Database partners:</b>We’ve consistently heard a common theme: developers want to build more of their applications on Workers. In addition to having our own first-party solutions such as Workers KV, Durable Objects, R2 and D1 we have also partnered with best-of-breed <a href="/workers-adds-support-for-two-modern-data-platforms-mongodb-atlas-and-prisma/">data companies</a> to bring their capabilities to the Workers developer platform and open up a wide variety of use cases on Workers.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2fIw5q6iJxFFFRVx6iLBO/04ab55519caed4eb3bb4390c54e49166/image3-18.png" />
            
            </figure><blockquote><p>“With Cloudflare and Macrometa, developers can now build and deliver powerful and compelling data-driven experiences in a way that the centralized clouds will never be able to. The world deserves a better cloud - an edge cloud.”<b>— Chetan Venkatesh, Co-founder/CEO, Macrometa</b></p></blockquote><blockquote><p>“The integration of Cloudflare workers with Fauna allows our joint customers to simply and cost effectively bring both data and logic to the edge. Fauna was developed from the ground up as a globally distributed, serverless database and when combined with Cloudflare Workers serverless compute fabric provides developers with a simple, yet powerful abstraction over the complexities of distributed infrastructure.”<b>— Evan Weaver, Co-founder/CTO, Fauna</b></p></blockquote><p><a href="/observability-ecosystem/"><b>Debugging, analytics, troubleshooting partners</b></a><b>:</b>Troubleshooting is key in the developer workflow. <a href="https://www.cloudflare.com/learning/performance/what-is-observability/">True observability</a> means having an end-to-end view of an entire system, inclusive of third-party integrations and deployments. By combining real-time data with data from other logging and monitoring endpoints, customers can get robust, instant feedback into how their website and <a href="https://www.cloudflare.com/application-services/solutions/app-performance-monitoring/">how applications are performing</a> all in one place.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/4nBi2FXkzG0KYiVGZn0cUu/f54624fb5b3ef200e6f587c67f0a7364/image2-21.png" />
            
            </figure><blockquote><p>“Teams using Cloudflare Workers with Splunk Observability get full-stack visibility and contextualized insights from metrics, traces and logs across all of their infrastructure, applications and user transactions in real-time and at any scale. With Splunk Observability, IT and DevOps teams now have a seamless and analytics-powered workflow across monitoring, troubleshooting, incident response and optimization. We're excited to partner with Cloudflare to help developers and operations teams slice through the complexity of modern applications and ship code more quickly and reliably.”<b>— Jeff Lo, Director of Product Marketing, Splunk</b></p></blockquote><blockquote><p>“Maintaining a strong security posture means ensuring every part of your toolchain is being monitored - from the datacenter/VPC, to your edge network, all the way to your end users. With Datadog’s partnership with Cloudflare, you get edge computing logs alongside the rest of your application stack’s telemetry - giving you an end to end view of your application’s health, performance and security.”<b>— Michael Gerstenhaber, Sr. Director, Datadog</b></p></blockquote><blockquote><p>“Reduce downtime and solve customer-impacting issues faster with an integrated observability platform for all of your Cloudflare data, including its Workers serverless platform. By using Cloudflare Workers with Sumo Logic, customers can seamlessly correlate system issues measured by performance monitoring, gain deep visibility provided by logging, and monitor user experience provided by tracing and transaction analytics.”<b>— Abelardo Gonzalez, Director of Product Marketing, Sumo Logic</b></p></blockquote><blockquote><p>“Monitoring your Cloudflare Workers serverless environment with New Relic lets you deliver serverless apps with confidence by rapidly identifying when something goes wrong and quickly pinpointing the problem—without wading through millions of invocation logs. Monitor, visualize, troubleshoot, and alert on all your Workers apps in a single experience.”<b>— Raj Ramanujam, Vice President, Alliances and Channels, New Relic</b></p></blockquote><blockquote><p>“With Cloudflare Workers and Sentry, software teams immediately have the tools and information to solve issues and learn continuously about their code health instead of worrying about systems and resources. We’re thrilled to partner with Cloudflare on building technologies that make it easy for developers to deploy with confidence.”<b>— Elain Szu, Vice President of Marketing, Sentry</b></p></blockquote><blockquote><p>“Honeycomb is excited to partner with Cloudflare as they build an ecosystem of tools that support the full lifecycle of delivering successful apps. Writing and deploying code is only part of the equation. Understanding how that code performs and behaves when it is in the hands of users also determines success. Cloudflare and Honeycomb together are shining the light of observability all the way to the edge, which helps technical teams build and operate better apps.”<b>— Charity Majors, CTO &amp; Co-Founder, Honeycomb</b></p></blockquote><p>And we are just getting started. Over the last 10 years, Cloudflare has built one of the fastest, most reliable, and most secure networks in the world. We are now enabling developers to build on that network using best in class products seamlessly. Visit our <a href="https://www.cloudflare.com/partners/developer-platform/">Developer Platform Partner Ecosystem</a> directory for more information on integrations.</p><p>If you’re interested in learning more about how to partner with us, reach out to us by filling out this quick <a href="https://www.cloudflare.com/partners/developer-platform/">form</a>.</p> ]]></content:encoded>
            <category><![CDATA[Platform Week]]></category>
            <guid isPermaLink="false">25pnNuEVCbGCUPHBJLLPKD</guid>
            <dc:creator>Dawn Parzych</dc:creator>
            <dc:creator>Abhi Das</dc:creator>
        </item>
    </channel>
</rss>