Node.js 24 LTS is now available on Sandbox
Vercel Sandbox now supports Node.js version 24.
To run a Sandbox with Node.js 24, upgrade @vercel/sandbox to version 1.1.0 or above and set the runtime property to node24:
import { Sandbox } from "@vercel/sandbox";
async function main() { const sandbox = await Sandbox.create({ runtime: "node24", });
const version = await sandbox.runCommand("node", ["-v"]); console.log(`Node.js version: ${await version.stdout()}`);}
main().catch(console.error);Read our Sandbox documentation to learn more.

