Skip to content
Dashboard

Node.js 26.x now available on Vercel Sandboxes

Software Engineer
main.ts
import { Sandbox } from "@vercel/sandbox";
const sandbox = await Sandbox.create({ runtime: "node26" });
const version = await sandbox.runCommand("node", ["-v"]);
console.log(`Node.js version: ${await version.stdout()}`);