Script Kit Logo
Script Kit
by John Lindquist
Vercel OSS Program

Scripts by alexdev888

Install Node + Vercel + pnpm

alexdev888's avatar
Alexei
// Name: Install Node + Vercel + pnpm // Description: Installs Node.js (if missing), then pnpm and Vercel CLI globally. // Author: alexdev888 // GitHub: alexdev888 import "@johnlindquist/kit" const has = (cmd: string) => { try { return !!which(cmd) } catch { return false } } const run = async (command: string) => { try { const { all } = await exec(command) return { ok: true, out: all || "" } } catch (err: any) {