PowerShell Forge is a Next.js application that helps you build and manage PowerShell scripts through a drag‑and‑drop interface. It was generated from the Firebase Studio starter template and provides the following features:
- Command Browser – browse available PowerShell commands and view their parameters.
- Script Editors – dedicated editors for adding, launching and removing applications.
- Drag and Drop – easily drag commands from the browser into an editor to construct your script.
- Parameter Editing – modify and validate command parameters inline.
- Script Management – load and save scripts or export them as
.ps1files.
- Node.js 20 or later
- npm (comes with Node.js)
Install dependencies and start the development server:
npm install
npm run devThe dev server starts on port 9002 by default.
- Browse available commands in the Command Browser.
- Drag commands into the Add, Launch, or Remove script editors.
- Adjust command parameters as needed.
- Use the Actions panel to load, save, or export scripts.
For a deeper look at the application structure, check src/app/page.tsx.
