
<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>Tue, 14 Apr 2026 19:00:45 GMT</lastBuildDate>
        <item>
            <title><![CDATA[Enhancing the Optimizely Experimentation Platform with Cloudflare Workers]]></title>
            <link>https://blog.cloudflare.com/enhancing-optimizely-with-cloudflare-workers/</link>
            <pubDate>Wed, 05 Jun 2019 13:00:00 GMT</pubDate>
            <description><![CDATA[ Experimentation is an important ingredient in driving business growth: whether you’re iterating on a product or testing new messaging, there’s no substitute for the data and insights gathered from conducting rigorous experiments in the wild.  ]]></description>
            <content:encoded><![CDATA[ <p></p><p><i>This is a joint post by </i><a href="https://www.linkedin.com/in/whelan-boyd-411b1174/"><i>Whelan Boyd</i></a><i>, Senior Product Manager at Optimizely and </i><a href="https://twitter.com/remyguercio"><i>Remy Guercio</i></a><i>, Product Marketing Manager for Cloudflare Workers.</i></p><p>Experimentation is an important ingredient in driving business growth: whether you’re iterating on a product or testing new messaging, there’s no substitute for the data and insights gathered from conducting rigorous experiments in the wild.</p><p>Optimizely is the world’s leading experimentation platform, with thousands of customers worldwide running tests for over 140 million visitors daily. If Optimizely were a website, it would be the third most trafficked in the US.  And when it came time to experiment with reinvigorating their own platform, Optimizely chose Cloudflare Workers.</p>
    <div>
      <h3>Improving Performance and Agility with Cloudflare Workers</h3>
      <a href="#improving-performance-and-agility-with-cloudflare-workers">
        
      </a>
    </div>
    <p>Cloudflare Workers is a globally distributed serverless compute platform that runs across Cloudflare’s network of 180 locations worldwide. Workers are designed for flexibility, with many different use cases ranging from customizing configuration of Cloudflare services and features to building full, independent applications.</p><p>In this post, we’re going to focus on how Workers can be used to improve performance and increase agility for more complex applications. One of the key benefits of Workers is that they allow developers to move decision logic and data into a highly efficient runtime operating in close proximity to end users — resulting in significant performance benefits and flexibility. Which brings us to Optimizely...</p>
    <div>
      <h3>How Optimizely Works</h3>
      <a href="#how-optimizely-works">
        
      </a>
    </div>
    <p>Every week Optimizely delivers billions of experiences to help teams A/B test new products, de-risk new feature launches, and validate alternative designs. Optimizely lets companies test client-side changes like layouts and copy, as well as server-side changes like algorithms and feature rollouts.</p><p>Let’s explore how both have challenges that can be overcome with Workers, starting with Optimizely’s client-side A/B testing, or Optimizely Web, product.</p>
    <div>
      <h3>Use Case: Optimizely Web</h3>
      <a href="#use-case-optimizely-web">
        
      </a>
    </div>
    <p>The main benefit of <a href="https://www.optimizely.com/platform/experimentation/">Optimizely Web</a> — Optimizely’s client-side testing framework — is that it supports A/B testing via straightforward insertion of a JavaScript tag on the web page. The test is designed via the Optimizely WYSIWYG editor, and is live within minutes. Common use cases include style updates, image swaps, headlines and other text changes. You can also write any custom JavaScript or CSS you want.</p><p>With client-side A/B testing, the browser downloads JavaScript that modifies the page as it’s loading.  To avoid “flash-of-unstyled-content” (FOUC), developers need to implement this JavaScript synchronously in their  tag.  This constraint, though, can lead to page performance issues, especially on slower connections and devices.  Downloading and executing JavaScript in the browser has a cost, and this cost increases if the amount of JavaScript is large.  With a normal Optimizely Web implementation, all experiments are included in the JavaScript loaded on every page.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/1QMd8nkUV19B2n7iPIlIL4/7c38d11e9f19c543f69d7a37e6d3aa2e/Screen-Shot-2019-06-03-at-9.26.52-AM.png" />
            
            </figure><p>A traditional Optimizely implementation</p><p>With Workers, Optimizely can support many of these same use cases, but hoists critical logic to the edge to avoid much of the performance cost. Here’s how it works:</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/1SaZx513TGy50njaeRXFjW/9897bfca232f9e11ad9a3cad88f55f93/Optimizely-Diagram--4-.png" />
            
            </figure><p>Implementing tests with Optimizely and Cloudflare Workers</p><p>This diagram shows how Optimizely customers can execute experiments created in the point-and-click UI through a Cloudflare Worker.  Rather than the browser downloading a large JavaScript file, your Worker handling HTTP/S requests calls out to Optimizely’s Worker.  Optimizely’s Worker determines which A/B tests should be active on this page and returns a small amount of JavaScript back to your Worker.  In fact, it is the JavaScript required to execute A/B test variations on just that specific page load.  Your Worker inlines the code in the page and returns it to the visitor’s browser.  </p><p>Not only does this avoid a browser bottleneck downloading a lot of data, the amount of code to execute is a fraction of a normal client-side implementation.  Since the experiments are set up inside the Optimizely interface just like any other Web experiment, you can run as many as you want without waiting for code deploy cycles.  Better yet, your non-technical (e.g. marketing) teams can still run these without depending on developers for each test.  It’s a one-time implementation.</p>
    <div>
      <h3>Use Case: Going Further with Feature Rollouts</h3>
      <a href="#use-case-going-further-with-feature-rollouts">
        
      </a>
    </div>
    <p><a href="https://www.optimizely.com/products/full-stack/">Optimizely Full Stack</a> is Optimizely’s <a href="https://www.optimizely.com/optimization-glossary/server-side-testing/">server-side experimentation</a> and feature flagging platform for websites, mobile apps, chatbots, APIs, smart devices, and anything else with a network connection.  You can deploy code behind feature flags, experiment with A/B tests, and roll out or roll back features immediately.  <a href="https://www.optimizely.com/rollouts/?utm_source=blog&amp;utm_campaign=cloudflare">Optimizely Rollouts</a> is a free version of Full Stack that supports key feature rollout capabilities.</p><p>Full Stack SDKs are often implemented and instantiated directly in application code.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2AajNeJQ0CO30bm3MBr8K1/27388e0a62543bafaac607ffc409e3eb/Screen-Shot-2019-06-03-at-10.42.52-AM.png" />
            
            </figure><p>An Optimizely full stack experimentation setup</p><p>The main blocker to high velocity <i>server-side</i> testing is that experiments and feature rollouts must go through the code-deploy cycle — and to further add to the headache, many sites <a href="https://docs.developers.optimizely.com/full-stack/docs/content-delivery-networks">cache content on CDNs</a>, so experiments or rollouts running at the origin never execute.  </p><p>In this example, we’ll consider a new feature you’d like to roll out gradually, exposing more and more users over time between code deploys. With Workers, you can implement feature rollouts by running the Optimizely JavaScript SDK at the edge.  The Worker is effectively a <a href="https://docs.developers.optimizely.com/full-stack/docs/content-delivery-networks#section-1-make-decisions-on-the-edge">decision service</a>.  Instead of installing the JS SDK inside each <a href="https://www.cloudflare.com/application-services/">application service</a> where you might need to gate or roll out features, centralize instantiation in a Worker.</p><p>From your application, simply hit the Worker and the response will tell you whether a feature is enabled for that particular user.  In the example below, we supply via query parameters a <code>userId</code>, <code>feature</code>, and account-specific SDK <code>key</code> and the Worker responds with its decision in <code>result</code>.  Below is a sample Cloudflare Worker:</p>
            <pre><code>import { createManager } from '../index'

/// &lt;reference lib="es2015" /&gt;
/// &lt;reference lib="webworker" /&gt;

addEventListener('fetch', (event: any) =&gt; {
  event.respondWith(handleRequest(event.request))
})

/**
 * Fetch and log a request
 * @param {Request} request
 */
async function handleRequest(request: Request): Promise&lt;Response&gt; {
  const url = new URL(request.url)
  const key = url.searchParams.get('key')
  const userId = url.searchParams.get('userId')
  const feature = url.searchParams.get('feature')
  if (!feature || !key || !userId) {
    throw new Error('must supply "feature", "userId" and "key"')
  }

  try {
    const manager = createManager({
      sdkKey: key,
    })

    await manager.onReady().catch(err =&gt; {
      return new Response(JSON.stringify({ status: 'error' }))
    })
    const client = manager.getClient()

    const result = await client.feature({
      key: feature,
      userId,
    })

    return new Response(JSON.stringify(result))
  } catch (e) {
    return new Response(JSON.stringify({ status: 'error' }))
  }
}</code></pre>
            <p>This kind of setup is common for React applications, which may update store values based on decisions returned by the Worker. No need to force a request all the way back to origin.</p><p>All in all, using Workers as a centralized decision service can reduce the complexity of your Full Stack implementation and support applications that rely on heavy caching.</p>
    <div>
      <h3>How to Improve Your Experimentation Setup</h3>
      <a href="#how-to-improve-your-experimentation-setup">
        
      </a>
    </div>
    <p>Both of the examples above demonstrate how Workers can provide speed and flexibility to experimentation and feature flagging.  But this is just the tip of the iceberg!  There are plenty of other ways you can use these two technologies together. We’d love to hear from you and explore them together!</p><p>Are you a developer looking for a feature flagging or server-side testing solution? The Optimizely Rollouts product is free and ready for you to <a href="https://www.optimizely.com/rollouts/?utm_source=blog&amp;utm_campaign=cloudflare">sign up</a>!</p><p>Or does your marketing team need a high performance A/B testing solution? The Optimizely Web use case is in <i>developer preview</i>.</p><ul><li><p><b>Cloudflare Enterprise Customers:</b> Reach out to your dedicated Cloudflare account manager learn more and start the process.</p></li><li><p><b>Optimizely Customers and Cloudflare Customers (who aren’t on an enterprise plan):</b> Reach out to your Optimizely contact to learn more and start the process.</p></li></ul><p>You can sign up for and learn more about using Cloudflare Workers <a href="https://workers.cloudflare.com/">here</a>!</p> ]]></content:encoded>
            <category><![CDATA[Serverless]]></category>
            <category><![CDATA[Cloudflare Workers]]></category>
            <category><![CDATA[JavaScript]]></category>
            <category><![CDATA[Developers]]></category>
            <category><![CDATA[Developer Platform]]></category>
            <guid isPermaLink="false">3w4Y1S2shUB22EzJX1YWPp</guid>
            <dc:creator>Guest Author</dc:creator>
            <dc:creator>Remy Guercio</dc:creator>
        </item>
        <item>
            <title><![CDATA[Real World Serverless: Serverless Use Cases and Best Practices]]></title>
            <link>https://blog.cloudflare.com/realworldserverlesssingapore/</link>
            <pubDate>Mon, 17 Dec 2018 18:44:49 GMT</pubDate>
            <description><![CDATA[ Cloudflare Workers has had a very busy 2018. Throughout the year, Workers moved from beta to general availability, continued to expand its footprint as Cloudflare grew to 155 locations, and added new features and services to help developers create increasingly advanced applications. ]]></description>
            <content:encoded><![CDATA[ <p><a href="https://developers.cloudflare.com/workers/">Cloudflare Workers</a> has had a very busy 2018. Throughout the year, Workers moved from beta to general availability, continued to expand its footprint as Cloudflare grew to 155 locations, and added new features and services to help developers create increasingly advanced applications.</p><p>To cap off 2018 we decided hit the road (and then head to the airport) with our Real World Serverless event series in San Francisco, Austin, London, Singapore, Sydney, and Melbourne. It was a great time sharing serverless application development insights we’ve discovered over the past year as well as demonstrating how to build applications with new services like our key value store, <a href="https://developers.cloudflare.com/workers/kv/">Cloudflare Workers KV</a>.</p><p>Below is a recording from our Singapore Real World Serverless event. It included three talks about Serverless technology featuring <a href="https://twitter.com/Miss_Vee22"></a><a href="https://twitter.com/obezuk">Tim Obezuk</a>, <a href="https://twitter.com/stnly">Stanley Tan</a>, and <a href="https://twitter.com/remyguercio">Remy Guercio</a> from Cloudflare. They spoke about the fundamentals of serverless technology, twelve factors of serverless application development, and achieving no ops at scale with network-based serverless.</p><p>If you’d like to join us in person to talk about serverless, we’ll be announcing 2019 event locations starting in the new year.</p><p></p>
    <div>
      <h3><b>About the talks</b></h3>
      <a href="#about-the-talks">
        
      </a>
    </div>
    <p><b>Fundamentals of Serverless Technology - Tim Obezuk (0:00-13:56)</b></p><p>Tim explores the anatomy of Cloudflare’s serverless technology, Cloudflare Workers, and how they can be used to improve availability, build faster websites and save costs. Workers allows you to run Javascript from 150+ data centers around the world.</p><p><b>The Serverless Twelve Factors - Stanley Tan (13:56-22:46)</b></p><p>Developers all know the benefits of the Twelve-Factor App methodology. It is now the industry standard for building modern web app services. Let’s take a look at how this applies to a serverless platform.</p><p><b>Achieving No Ops at Scale with Network-Based Serverless - Remy Guercio (22:46-49:21)</b></p><p>While most major serverless platforms have done an effective job of abstracting the concept of a single server or group of servers, they have yet to make it as easy to deploy globally as it is to deploy to a specific region. Building global applications with region-based serverless providers still requires a significant effort to set up both frontend load balancing and backend data replication. Let’s explore how network-based serverless providers are helping developers build applications of all sizes with a true No Ops mentality.</p><p>Check out our Workers recipes we have listed on our docs <a href="https://developers.cloudflare.com/workers/">here »</a></p> ]]></content:encoded>
            <category><![CDATA[Serverless]]></category>
            <category><![CDATA[Cloudflare Workers]]></category>
            <category><![CDATA[JavaScript]]></category>
            <category><![CDATA[Events]]></category>
            <category><![CDATA[Video]]></category>
            <category><![CDATA[Best Practices]]></category>
            <category><![CDATA[Developers]]></category>
            <category><![CDATA[Developer Platform]]></category>
            <guid isPermaLink="false">5COnRqYvzl7YKeqVjL41OP</guid>
            <dc:creator>Andrew Fitch</dc:creator>
            <dc:creator>Remy Guercio</dc:creator>
        </item>
        <item>
            <title><![CDATA[Test New Features and Iterate Quickly with Cloudflare Workers]]></title>
            <link>https://blog.cloudflare.com/iterate-quickly-with-cloudflare-workers/</link>
            <pubDate>Tue, 19 Jun 2018 19:11:14 GMT</pubDate>
            <description><![CDATA[ At Cloudflare, we believe that getting new products and features into the hands of customers as soon as possible is the best way to get great feedback. The thing about releasing products early and often is that sometimes they might not be initially ready for your entire user base. ]]></description>
            <content:encoded><![CDATA[ <p></p><p>Photo by <a href="https://unsplash.com/@nesabymakers?utm_source=ghost&amp;utm_medium=referral&amp;utm_campaign=api-credit">NESA by Makers</a> / <a href="https://unsplash.com/?utm_source=ghost&amp;utm_medium=referral&amp;utm_campaign=api-credit">Unsplash</a></p><p>At Cloudflare, we believe that getting new products and features into the hands of customers as soon as possible is the best way to get great feedback. The thing about releasing products early and often is that sometimes they might not be initially ready for your entire user base. You might want to provide access to only particular sets of customers that may be: power users, those who have expressed interest participating in a beta, or customers in need of a new feature the most.</p><p>As I have been meeting with many of the users who were in our own Workers beta program, I’ve seen (somewhat unsurprisingly) that many of our users share the same belief that they should be getting feedback from their own users early and often.</p><p>However, I was surprised to learn about the difficulty that many beta program members had in creating the necessary controls to quickly and securely gate new or deprecated features when testing and releasing updates.</p><p>Below are some ideas and recipes I’ve seen implemented inside of <a href="https://www.cloudflare.com/products/cloudflare-workers/">Cloudflare Workers</a> to ensure the appropriate customers have access to the correct features.</p>
    <div>
      <h3>How Workers Work</h3>
      <a href="#how-workers-work">
        
      </a>
    </div>
    <p>First, a brief primer on how Workers work.</p><p>As soon as a Worker is deployed, it is available and ready to run at every one of Cloudflare’s 155+ data centers in response to a request made to your website, application or <a href="https://www.cloudflare.com/learning/security/api/what-is-an-api/">API</a>. Workers are able to modify anything about both the request to and response from your origin server. They also have the ability to make subrequests to other endpoints in response to the initial request.</p><p>Workers are able to make their own subrequests using the available fetch method. We’ll be relying on this as well as the fact that requests made via fetch are also cacheable by Cloudflare to make sure that gating of features is not just secure but also quick.</p>
    <div>
      <h3>How to Securely Cache User Permissions</h3>
      <a href="#how-to-securely-cache-user-permissions">
        
      </a>
    </div>
    <p>Let’s say you have an endpoint on your origin that allows us to securely pull the permissions for a particular user.</p><p><code>https://api.yoursite.com/user/{uid}</code></p><p>From a Cloudflare Worker we can securely fetch this permission information using a token and have it returned either as JSON or as part of the headers.</p>
            <pre><code>// Create Request
 var permissionRequest = new Request(permissionsURL, {
      method: 'GET', 
      headers: new Headers({
        'X-Auth-Token': 'super-secret-token'
      })
    });
// Make the request and wait for the response
var permissionResponse = await fetch(permissionRequest, { cf: { cacheTtl: 14400 } });

// Getting Permissions returned in the Headers
var newFeatureAvailable = permissionResponse.headers.get('X-YourSite-NewFeature');

// Getting Permissions returned as JSON
var jsonPermissions = await permissionResponse.json();</code></pre>
            <p>As I wrote earlier, the fetch request actually caches the responses generated when using it. So, subsequent Workers calls can grab user permissions without having to go back to the origin’s endpoint.</p><p>While the default cache TTL of 4 hours might work for many applications, fetch will also allow you to set an arbitrary TTL to ensure that your users are not granted permissions any longer than necessary. To set a TTL of 300 seconds (note: the free plan has a lower TTL limit of 2 hours or 7200 seconds) you would change the fetch above to be:</p>
            <pre><code>var permissionResponse = await fetch(permissionRequest, { cf: { cacheTtl: 300 } });</code></pre>
            
    <div>
      <h4>A Note about Caching Sensitive Objects</h4>
      <a href="#a-note-about-caching-sensitive-objects">
        
      </a>
    </div>
    <p>If you are storing sensitive information (like user permissions) in Cloudflare’s cache, it is always important to keep in mind that the url should never be publicly accessible, but rather only from within a Worker.</p><p>The Worker set to run in front of <code>api.yoursite.com/user/{uid}</code> should either block all requests to the path from outside of a Cloudflare Worker or check to ensure the request has a valid secret key.</p>
    <div>
      <h4>A Note about Using “Super-Secret-Tokens”</h4>
      <a href="#a-note-about-using-super-secret-tokens">
        
      </a>
    </div>
    <p>Tokens should be provided in your Worker when uploaded to Cloudflare and verified by your origin on each request. Extremely security conscious readers might be nervous about storing credentials in code, but note that Cloudflare strongly encourages 2FA as well as restricts Worker access to specific accounts. We are also exploring better ways of passing secrets to Workers.</p>
    <div>
      <h3>Common Ways of Gating New Features</h3>
      <a href="#common-ways-of-gating-new-features">
        
      </a>
    </div>
    <p>Now that you have quickly fetched the user permissions from cache, it’s time to do something with them! There are endless things you could do, but for this post I will cover some of the more common ones including: restricting paths, A/B Testing, and custom routing between origins.</p>
    <div>
      <h4>Restricting Paths</h4>
      <a href="#restricting-paths">
        
      </a>
    </div>
    <p>Let’s say you’re releasing v2 of your current API. You want all users to still be able to send GET and POST requests to v1, but since you’re still performance tuning some new v2 features, only authorized users should be able to POST while everyone can GET. Continuing from the example before, this can be done with Cloudflare using the following code:</p>
            <pre><code>const apiV2 = jsonPermissions['apiV2'];

// Check to see if user in allowed to test the v2 API
if (apiV2) {
    // They're allowed to test v2 so pass everything through. 
    return fetch(request);
} else {
    // If they aren't specifically allowed to test v2 then we
    // only allow GETs everything else returns a 403 from the edge.
    if (request.method !== 'GET') {
        return new Response('Sorry, this page is not available.',
            { status: 403, statusText: 'Forbidden' });
    }
    return fetch(request);
}</code></pre>
            
    <div>
      <h3>A/B Testing</h3>
      <a href="#a-b-testing">
        
      </a>
    </div>
    
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/604uzrvjAD0DfjEMPpnnAK/46f62a35d102c919169913a49e895398/workers-ab-test.png" />
            
            </figure><p>When releasing a new API version you might also want to update your documentation with a new design, but before rolling out anything it’s important to run a test to make sure it improves (or doesn’t harm) your relevant metrics. A/B testing different versions of the documentation amongst users who have access to V2 of the API can be easily done with Cloudflare Workers:</p>
            <pre><code>const apiV2 = jsonPermissions['apiV2'];
const group = jsonPermissions['testingGroup'];

// Here we'll use a variable set in the JSON returned from
// the  user API to determine the users test group, but you 
// could also do this randomly by assigning a cookie to send back.
// Example: https://developers.cloudflare.com/workers/recipes/a-b-testing/

// Make sure the user is allowed to see API V2
if (apiV2) {
    let url = new URL(request.url);
    
    // Append the user's test group to the forwared request
    // Hidden from user: /docs/v2/ -&gt; /group-1/docs/v2/
    url.pathname = `/${group}${url.pathname}`;
    
    const modifiedRequest = new Request(url, {
        method: request.method,
        headers: request.headers
    });
    const response = await fetch(modifiedRequest);

    return response;
} else {
    // User shouldn't be allowed to see V2 docs
    return new Response('Sorry, this page is not yet available.',
        { status: 403, statusText: 'Forbidden' });
}</code></pre>
            
    <div>
      <h4>Custom Routing Between Origins</h4>
      <a href="#custom-routing-between-origins">
        
      </a>
    </div>
    <p>Spinning up a new version of an API or Application sometimes requires spinning up an entirely new origin server. Cloudflare Workers can easily route API calls to separate origins based on paths, headers, or anything else in the request. Here we’ll make sure the user has permission to access v2 of the API and then route the request to the dedicated origin:</p>
            <pre><code>const apiV2Allowed = jsonPermissions['apiV2Allowed'];

const v1origin = 'https://prod-v1-api.yoursite.com';
const v2origin = 'https://beta-v2-api.yoursite.com';

// Original URL: https://api.yoursite.com/v2/endpoint
const originalURL = new URL(request.url);
const originalPath = originalURL.pathname;
const apiVersion = originalPath.split('/')[1];
const endpoint = originalPath.split('/').splice(2).join('/');


if (apiVersion === 'v2') {
    if (apiV2Allowed) {
        let newUrl = new URL(v2origin);
        newUrl.pathname = endpoint;
        const modifiedRequest = new Request(newUrl, {
            method: request.method,
            headers: request.headers
        });
        return fetch(modifiedRequest);
    } else {
        return new Response('Sorry, this API version is not available.',
            { status: 403, statusText: 'Forbidden' });
    }
} else {
    let newUrl = new URL(v1origin);
    newUrl.pathname = endpoint;
    const modifiedRequest = new Request(newUrl, {
        method: request.method,
        headers: request.headers
    });
    return fetch(modifiedRequest);
}</code></pre>
            <p>Think I should have included another way of gating features? Make sure to share it on our <a href="https://community.cloudflare.com/tags/recipe-exchange">Cloudflare Community recipe exchange</a>.</p> ]]></content:encoded>
            <category><![CDATA[Cloudflare Workers]]></category>
            <category><![CDATA[JavaScript]]></category>
            <category><![CDATA[Serverless]]></category>
            <category><![CDATA[Developers]]></category>
            <category><![CDATA[Developer Platform]]></category>
            <guid isPermaLink="false">5bo2wiC08YPR4ETwXd08gM</guid>
            <dc:creator>Remy Guercio</dc:creator>
        </item>
    </channel>
</rss>