Simplify Your Development Workflow
Dev is a powerful PowerShell utility that streamlines your development process on Windows. Quickly open, create, manage, and version-control projects across multiple frameworks and languages.
Powerful Features
Open Projects
Open project folders in VSCode and/or Windows Explorer with a single command.
Create Projects
Create new projects for Vite, Python, Discord bots, C++, and more frameworks.
Git Integration
Clone, pull, commit, and push repositories directly from your command line.
Configure Roots
Set up default root paths for your project types and manage configurations.
List Projects
View all your existing project folders organized by category.
Custom Preferences
Save default preferences for opening VSCode and Windows Explorer.
Installation
Chocolatey
Package manager for Windows
choco install dev-ps-utils -yNote: Package updates may be delayed
Quick Setup
1After installation, reload your PowerShell profile:
. $PROFILE2Test the installation:
dev help3Set up your first root directory:
dev set root web "D:/my-projects"Prerequisites
Quick Command Reference
Define a new root directory for a project type
$ dev set root web "D:/my-projects"Open a folder in VSCode and Explorer
$ dev open my-projectOpen a folder from a configured root
$ dev open web my-projectCreate a new project of specified type
$ dev create vite my-appRemove a folder
$ dev rm old-projectClone or pull a Git repository
$ dev pull https://github.com/user/repoCommit and push changes
$ dev release "Fix bug" "Detailed changelog"Commit locally without pushing
$ dev local-release "Work in progress"List all projects or projects in a root
$ dev list web