Node.js 26.x now available on Vercel Sandboxes (opens in new tab)
# Node\.js 26\.x now available on Vercel Sandboxes **Published:** May 12, 2026 | **Authors:** Andy Waller --- Vercel Sandbox now supports Node.js version 26. To run a Sandbox with Node.js 26, upgrade `@vercel/sandbox` to `1.10.2` or later, or to `2.0.0-beta.19` or later if you're using v2 and set the `runtime` property to `node26`: **main.ts** ```typescript import { Sandbox } from "@vercel/sandbox"; const sandbox = await Sandbox.create({ runtime: "node26" }); const version = await sandbo...
Read the original article