Skip to main content
Vercel is a cloud platform for building, deploying, and scaling apps. Vercel Functions can run on the Bun runtime, either behind a framework that Vercel supports or as a Bun.serve() server.
The Bun runtime on Vercel is in Beta. Automatic source maps, bytecode caching, and request metrics for node:http and node:https are not supported yet (request metrics for fetch are). See feature support in the Vercel documentation.

1

Configure Bun in vercel.json

To run your Functions on Bun, add a bunVersion field to your vercel.json file:
vercel.json
The value must be "1.x"; Vercel manages the minor and patch versions.For best results, match your local Bun version with the version used by Vercel.
2

Add a server

Choose how requests reach your code.
Vercel’s Bun framework preset sends every request for the deployment to a single Bun.serve() server. Vercel uses the preset when the project sets bunVersion, has a bun.lock file, and has a server entrypoint at one of these paths:
  • server.{js,cjs,mjs,ts,cts,mts}
  • src/server.{js,cjs,mjs,ts,cts,mts}
bun install creates bun.lock on Bun 1.2 or later. On older versions, run bun install --save-text-lockfile. The preset does not detect the binary bun.lockb format.Call Bun.serve() once while the module loads. Vercel detects that call and routes incoming requests to it. The fetch, routes, error, and websocket options are supported:
server.ts
A minimal project is package.json, bun.lock, server.ts, and the vercel.json from the previous step. It doesn’t need an api/ directory or any routing configuration.
port and hostname only apply when you run the server locally; they don’t configure the deployed endpoint. Unix sockets and HTML imports in routes are not supported on Vercel.To serve WebSocket connections, see the Bun example in Vercel’s WebSockets documentation.
3

Deploy your app

Connect your repository to Vercel, or deploy from the CLI:
terminal
Or install the Vercel CLI globally:
terminal
Learn more in the Vercel Deploy CLI documentation →
4

Verify the runtime

To confirm your deployment uses Bun, log the Bun version:
index.ts
See the Vercel Bun Runtime documentation for feature support →

  • Fluid compute: Both Bun and Node.js runtimes run on Fluid compute and support the same core Vercel Functions features.
  • Middleware: To run Routing Middleware with Bun, set the runtime to nodejs:
middleware.ts