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

推荐订阅源

Last Week in AI
Last Week in AI
H
Help Net Security
博客园 - 叶小钗
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
A
About on SuperTechFans
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
月光博客
月光博客
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News

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
Bun runtime now in Public Beta for Vercel Functions - Vercel
Authors · 2025-10-28 · via Vercel News

The Bun runtime is now available in Public Beta for Vercel Functions.

You can choose between Node.js and Bun as your project runtime, selecting the best option for your workload.

Benchmarks show Bun reduced average latency by 28% for CPU-bound Next.js rendering compared to Node.js.

To use Bun in Vercel Functions, set the runtime globally in your project's vercel.json:

Enable Bun runtime support in your app by adding bunVersion to vercel.json

We currently support the following frameworks, with more on the way:

  • Next.js

  • Hono

  • Express

  • Nitro

Bun supports TypeScript with zero configuration. Here's an example with Hono:

import { Hono } from 'hono';

const app = new Hono();

app.get('/', (c) => {

return c.text(`Hello from Hono on Bun ${process.versions.bun}!`);

});

export default app;

Hello World endpoint in Hono with the Bun runtime on Vercel

Or get started with one of our starter templates:

Bun deployments automatically integrate with Vercel's existing logging, observability, and monitoring systems.

See benchmarks in our blog post, or read the docs to learn more.