
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Run Bun on Vercel Serverless Functions
https://bun-vercel.vercel.app/
This is an experimental project and should not be used in production. This project is not endorsed by Vercel.
// src/main.ts
import { type Server } from "bun"
export default {
async fetch(request: Request, server: Server) {
return new Response("Hello from Bun on Vercel", {
status: 200,
headers: { "Content-Type": "text/plain" }
})
}
}
There are two ways to deploy your project to Vercel:
Note: An issue in Bun must be resolved before this method is fully operational
bun-vercel
{
"devDependencies": {
"bun-vercel": "^1.0.0-alpha.4",
}
}
build
script run bun-vercel{
"scripts": {
"build": "bun-vercel ./src/main.ts"
}
}
vercel.json
with your build command{
"buildCommand": "bun run build"
}
Before starting you should follow the same setup steps as the GitHub integration, as they will be needed regardless.
Note: To deploy from your computer you must have Docker installed so we can build for Amazon Linux
vercel link
bun run build
vercel deploy --prebuilt --prod
FAQs
Run [Bun](https://bun.sh) on Vercel Serverless Functions
The npm package bun-vercel receives a total of 110 weekly downloads. As such, bun-vercel popularity was classified as not popular.
We found that bun-vercel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.