惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Jina AI
Jina AI
S
SegmentFault 最新的问题
D
DataBreaches.Net
H
Help Net Security
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Martin Fowler
Martin Fowler
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
罗磊的独立博客
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
Vercel News
Vercel News
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
博客园 - 三生石上(FineUI控件)

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
Introducing the Flags Explorer, first-party integrations,...
2025-05-07 · via Vercel News

3 min read

Integrating feature flags deeper in your workflow with updates across Vercel

Experimentation, A/B testing, and feature flags serve as essential tools for delivering better user experiences, ensuring smoother rollouts, and empowering teams to iterate quickly with confidence. We're making it easier to bring flags into your workflow with:

  • Flags Explorer, now generally available, allowing you to manage feature flags directly from the Vercel Toolbar

  • New first-party integrations with flag providers on the Vercel Marketplace

  • Updates to the Flags SDK and new adapters

Link to headingFlags Explorer: Manage your flags in Vercel

The Flags Explorer in the Vercel Toolbar gives you a clear view of all feature flags and lets you override their values directly from the toolbar, simplifying testing and experimentation. This feature is now generally available for users on all plans.

Flags Explorer lets you override feature flags for your own session, without affecting colleagues, and without signing into your flag provider. This lets you test features in production before they go live for everyone and keeps you in the flow. You can also use the Flags Explorer to demo upcoming features, or share overrides with team members to collect feedback or test and QA.

Link to headingExperimentation on the Vercel Marketplace, featuring Statsig

The new Experimentation category on the Vercel Marketplace lets you integrate experimentation and feature flagging tools into your project, deployment workflows, and release processes without needing separate accounts for the provider.

Our launch partner, Statsig, provides a powerful feature flagging and experimentation platform that helps teams test and iterate on new features with confidence.

By using Statsig on the Vercel Marketplace, you’ll get:

  • Quick setup: Configure Statsig with just a few clicks

  • Managed configuration: Environment variables and API keys are preconfigured

  • Consistent deployments: Maintain consistent settings and version history across deployments, helping ensure that experiments run reliably across all environments

  • Low-latency flag evaluation: Sync feature flags into Vercel's Edge Config, reducing network requests and ensuring flags work even if the provider is down

Try the template

Try Statsig's first-party experimentation integration on the Vercel Marketplace.

Get started

If you’re building an experimentation platform or feature flags solution and you’re interested in featuring your product in the Vercel Marketplace’s Experimentation category, contact us at integrations@vercel.com or refer to our provider documentation to get started.

Link to headingFlags SDK: Working with flags in code

The Flags SDK is an open-source library that gives developers tools to integrate feature flags in Next.js and SvelteKit applications.

npm i flags

flags works with popular providers like Statsig, other third-party tools, or your own custom solution. Whether you're running A/B tests, rolling out new features gradually, or personalizing user experiences, the SDK provides a flexible way to control features at runtime without redeploying.

import { flag } from 'flags/next';

export const exampleFlag = flag({

key: 'example-flag',

decide() {

return false;

},

});

Importing and evaluating flags using the Flags SDK.

The Flags SDK now supports loading feature flags directly from many providers through a new adapters architecture, with more providers coming soon. This simplifies connecting your code to a feature flag provider using the Flags SDK. For example, the @flags-sdk/statsig package allows you to manage your Statsig flags directly within Vercel in the Flags Explorer.

Link to headingGet started with flags on Vercel

By integrating experimentation tools like Statsig directly into your Vercel workflow, you can accelerate iteration velocity, reduce risk, and deliver personalized user experiences. This new category on the Marketplace, combined with Vercel's existing feature flag capabilities, will empower you to build more quickly and confidently.

Check out the documentation

Dive in and learn how to use feature flags with Vercel's DX platform.

Get started