ClaudeCloudflare Developer PlatformMay 26, 2026, 12:00 AM

Flagship - Flagship now in public beta

A condensed section focused on the key takeaways first.

Original Post

Quick Digest

Summary

A condensed section focused on the key takeaways first.

claudeen

Flagship - Flagship now in public beta Summary

Key Points

  • Point 1: Changelog New updates and improvements at Cloudflare.
  • Point 2: Subscribe to RSS View RSS feeds ← Back to all posts Flagship now in public beta May 26, 2026 Flagship Flagship is now in public beta.
  • Point 3: Evaluate feature flags directly from Cloudflare Workers with no outbound HTTP calls, using globally distributed flag configuration backed by Workers KV and Durable Objects.

Summary

This is an English summary of "Flagship - Flagship now in public beta" published on 2026-05-26.

Key Points

  • Point 1: Changelog New updates and improvements at Cloudflare.
  • Point 2: Subscribe to RSS View RSS feeds ← Back to all posts Flagship now in public beta May 26, 2026 Flagship Flagship is now in public beta.
  • Point 3: Evaluate feature flags directly from Cloudflare Workers with no outbound HTTP calls, using globally distributed flag configuration backed by Workers KV and Durable Objects.

Full Translation

Translations

A translation section that keeps the flow of the original article.

claudeja

Flagship - Flagship now in public beta(原文タイトル)

概要

公開日: 2026-05-26 翻訳生成に失敗したため、原文をそのまま保存しています。

原文

Changelog New updates and improvements at Cloudflare. Subscribe to RSS View RSS feeds ← Back to all posts Flagship now in public beta May 26, 2026 Flagship 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 TypeScript 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 >; { const showNewCheckout = await env.FLAGS.getBooleanValue("new-checkout", false); return new Response( showNewCheckout ? "New checkout" : "Standard checkout", ); },} satisfies ExportedHandler ;"> Start creating flags from the Cloudflare dashboard today. Refer to the Flagship documentation to get started. Resources API New to Cloudflare? Directory Sponsorships Open Source Cloudflare Research Support Help Center System Status Compliance GDPR Company cloudflare.com Our team Careers Tools Cloudflare Radar Cloudflare Labs Speed Test Is BGP Safe Yet? Certificate Transparency Community Community forum X Discord YouTube GitHub © 2026 Cloudflare, Inc. Privacy Policy Terms of Use Report Security Issues Trademark Cookie Settings Was this helpful? Yes No