Important
Action needed for two new vulnerabilities
Auto-fix projects

Node.js 24 LTS is now available on Sandbox

1 min read

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:

main.ts
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.