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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Jina AI
Jina AI
博客园 - 叶小钗
B
Blog RSS Feed
Recent Announcements
Recent Announcements
H
Help Net Security
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
B
Blog
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客

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