Menu

Node.js 24 LTS is now available on Sandbox - Vercel
📰
0

Node.js 24 LTS is now available on Sandbox - Vercel

Vercel News·Andy Waller·4 days ago
#uoZurcR9
#vercel#sandbox#version#node#await#photo
Reading 0:00
15s threshold

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();

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.

Read More