---
title: Flagship now in public beta
description: Evaluate feature flags at the edge directly from Cloudflare Workers with Flagship, Cloudflare's native feature flag service.
image: https://developers.cloudflare.com/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/changelog/llms.txt  
> Use this file to discover all available pages before exploring further.

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Flagship now in public beta

May 26, 2026 

[ Flagship ](https://developers.cloudflare.com/flagship/) 

**[Flagship](https://developers.cloudflare.com/flagship/)** is now in public beta. Evaluate feature flags directly from Cloudflare Workers with no outbound HTTP calls, using globally distributed flag configuration backed by Workers KV and Durable Objects. Flagship supports typed flag values, targeting rules, percentage rollouts, audit history, and OpenFeature-compatible SDKs.

Evaluate a flag from a Worker in a few lines of code:

* [  JavaScript ](#tab-panel-1002)
* [  TypeScript ](#tab-panel-1003)

src/index.js

```

export default {

  async fetch(request, env) {

    const showNewCheckout = await env.FLAGS.getBooleanValue(

      "new-checkout",

      false,

    );


    return new Response(showNewCheckout ? "New checkout" : "Standard checkout");

  },

};


```

src/index.ts

```

export default {

  async fetch(request: Request, env: Env): Promise<Response> {

    const showNewCheckout = await env.FLAGS.getBooleanValue("new-checkout", false);


    return new Response(

      showNewCheckout ? "New checkout" : "Standard checkout",

    );

  },

} satisfies ExportedHandler<Env>;


```

Start creating flags from the Cloudflare dashboard today. Refer to the [Flagship documentation](https://developers.cloudflare.com/flagship/get-started/) to get started.