Skip to content

Instantly share code, notes, and snippets.

View rise-workspace's full-sized avatar

rise-workspace

View GitHub Profile
@rise-workspace
rise-workspace / start.bat
Created October 14, 2025 09:23
A simple Windows .bat script that lists all project folders in the same directory as the script, allows the user to select one from a numbered menu, and then opens it in Visual Studio Code with the desired Node.js version using nvm for Windows. Perfect for quickly switching between multiple local projects without maintaining multiple .bat files.
@echo off
setlocal enabledelayedexpansion
REM === Base directory where your projects are located ===
set "BASE_DIR=%~dp0"
REM === Select Node.js version here ===
set "NODE_VERSION=v20.18.3"
REM === Configure Node.js via NVM ===