Skip to content
Dashboard

Node.js 24 LTS is now available on Sandbox

Software Engineer
main.ts
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);

Ready to deploy?