ClaudeCloudflare Developer Platform2026/05/26 0:00

Flagship - Flagship now in public beta

要点だけを先に読めるように短く再構成したセクションです。

元記事

Quick Digest

要約

要点だけを先に読めるように短く再構成したセクションです。

claudeja

Flagship - Flagship now in public beta の要約

Key Points

  • ポイント1: Changelog New updates and improvements at Cloudflare.
  • ポイント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.
  • ポイント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

この記事は 2026-05-26 に公開された「Flagship - Flagship now in public beta」の内容を日本語で簡潔にまとめたものです。

Key Points

  • ポイント1: Changelog New updates and improvements at Cloudflare.
  • ポイント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.
  • ポイント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

翻訳

原文の流れを保ったまま読める翻訳セクションです。

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

Flagship - Flagship がパブリックベータになりました | Cloudflare Developer Platform | DocsDigest