[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live) [Feedback](/c/feedback/8) # Bun Runtime Alternative 329 views · 7 likes · 7 posts Versecafe (@versecafe) · 2024-10-17 · ♥ 3 I'm wondering about the practicality of offering a bun runtime alternative on Vercel properly in the functions settings so `[Node 18.x, Node 20.x, Node 22.x, Bun Latest]` rather than as a side runtime to take advantage of things like bytecode precompilation supported in the newest bun releases since currently no platform offers a nice experience for serverless bun taking advantage of some of it's easy wins especially as Bun's node api support begins to reach the level where things like running NextJS directly on bun instead of bun -> node become practical and easy to set up. > I am aware that you can do a custom runtime on Vercel but stitching in things like bytecode precompilation and proper support for build pipelines on frameworks like next will be a pain if it's even possible with an extension impeccably (@alierenaltindag) · 2025-05-11 · ♥ 1 Definately! Bun is much more better since 1.2 was released. Vercel should support it as a runtime option. Johnny Woodtke (@jwoodtke) · 2025-09-05 I recently developed a custom Bun runtime for Vercel serverless functions: https://github.com/johnny-woodtke/vercel-bun It implements Vercel’s Runtime API, so integrating it into Vercel’s standard CI/CD webhook infrastructure requires minimal effort/configuration, unlike the existing Vercel Community custom Bun runtime. However, it does not integrate natively into Next.js API routes. It requires its own API directory, but can be used in conjunction with standard Next.js API routes. I have done this already: * Code here: https://github.com/johnny-woodtke/vercel-bun/tree/main/examples/next * Live demo here: https://vercel-bun-nine.vercel.app Brrock (@brrock) · 2025-10-23 Can we get native support? Michael H (@risky) · 2025-10-30 · ♥ 2 @brrock yeah https://vercel.com/blog/bun-runtime-on-vercel-functions Pauline P. Narvas (@pawlean) · 2025-10-30 Let us know if you have any questions! Thanks for sharing :slight_smile: Versecafe (@versecafe) · 2025-10-30 · ♥ 1 waiting for first class elysia support