How to setup web dev on fresh Windows
A step-by-step guide on how to setup a fresh Windows 11 installation for web development. These steps should also work on Windows 10 without much variation.
This guide assumes that you are not using WSL (I don't find it necessary to use WSL for web development).
1. Find your system architecture
This is necessary so you download the correct apps.
- Open Settings > System > About.
- Find "System Type". It'll likely either be "ARM" or "x86".
2. Install the latest PowerShell
-
Check your current version of PowerShell.
- Open "Windows Powershell" via the Start menu.
- Run
$PSVersionTable.PSVersion
.
-
If your current version is already >= 7, skip to the next section as your PowerShell is already up to date.
Windows does not ship with PowerShell 7, so unless you know that you already upgraded, you are most likely on an outdated PowerShell.
-
Download the installer for your architecture.
-
Run the installer.
3. Setup a PowerShell 7 configuration
- Open "PowerShell 7" from the Start menu. (Do not open "Windows PowerShell".)
- Right click on the title bar of the terminal window.
- Go to Settings > PowerShell (not "Windows PowerShell").
- Change its name to "PowerShell 7" to avoid future confusion.
- Go to Settings > Startup.
- Change your "Default profile" to "PowerShell 7".
4. Install VS Code
- Go to https://code.visualstudio.com/download.
- Download the User Installer for your architecture.
- Run the installer.
- If you see a "This User Installer is not meant to be run as an Administrator" warning, do not ignore it. Instead, follow the "Fix Administrator Access" section at the bottom of this guide.
5. Install Git and Bash
I recommend using PowerShell for your CLI, not the Git-Bash terminal. However, you still almost certainly need both git and bash installed.
- Go to https://git-scm.com/downloads/win.
- Click the main download link ("Click here to download the latest").
- Run the installer.
- After it finishes, find the path to your bash installation.
- Search for "Git Bash" in the Start menu and click "Open file location".
- This will show you a shortcut file. Right click that shortcut and click "Open file location" (once again).
- Navigate to usr > bin within that Git folder.
- Copy your current path location. (It will probably look something like
C:\Users\<username>\AppData\Local\Programs\Git\usr\bin
.)
- Add bash to your PowerShell 7's
PATH
.- Search for "Environment Variables" in the Start menu.
- Click "Edit the system environment variables" > "Environment Variables..." > Path > Edit > New.
- Paste in the
Git\usr\bin
path from step 4 and save it.
- Test that it worked.
- Open a new PowerShell 7 terminal.
- Run
bash
. It should not throw an error. - Run
git
. It should not throw an error.
6. Setup SSH with GitHub
- Configure OpenSSH to always run.
- Search for "Services" in the Start menu and click "Open file location".
- Run it as an administrator.
- Find "OpenSSH Authentication Agent".
- Right click it and click "Properties".
- Change "Startup type" to "Automatic" and click "Start".
- Open a new PowerShell 7 terminal.
- Run
git config --global core.sshCommand C:/Windows/System32/OpenSSH/ssh.exe
. - Follow the GitHub guide on generating a new SSH key: https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.
- Make sure you’re on the Windows tab.
- Follow the GitHub guide on adding the SSH key to GitHub: https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account.
- Make sure you’re on the Windows tab.
- Make sure to run the copy command from Git-Bash, not PowerShell.
- Make sure to copy the contents of the
.pub
file.
- Configure PowerShell 7 to always add your ssh key.
- Open your profile file with
code $PROFILE
(in PowerShell 7). - Paste in
ssh-add C:\Users\<username>\.ssh\<your-key-name>
(or whatever the path is to the SSH key you just generated).
- Open your profile file with
- Test your key with
ssh -T git@github.com
.- You should get a message like "Hi username! You've successfully authenticated."
7. Install Node.js and npm
- Download the nvm for Windows installer with the latest
nvm-setup.exe
file here: https://github.com/coreybutler/nvm-windows/releases. - Run the installer as an administrator. Keep track of nvm's install path, noted in the installer.
- If you're using a separate user as your administrator, change your nvm install path to somewhere within the non-admin user's directory, like
C:\Users\<non-admin-user>\.nvm
. Likewise, change the Node.js install path:C:\Users\<non-admin-user>\.node
.
- If you're using a separate user as your administrator, change your nvm install path to somewhere within the non-admin user's directory, like
- Add nvm to your
PATH
variable.- Search for "Environment Variables" in the Start menu.
- Click "Edit the system environment variables" > "Environment Variables..." > Path > Edit > New.
- Paste in the nvm install path.
- Open a new PowerShell 7 window.
- Run
nvm install <node-version
> (such asnvm install 22
). - After installation, find your new Node.js install path.
- Run
nvm root
to find the root nvm folder again. - Navigate to this folder and find a folder corresponding to the Node.js version you just installed.
- Copy that folder location (it'll likely look like
C:\Users\<username>\.nvm\v22.12.0
).
- Run
- Add the new Node.js install path to
PATH
.- Search for "Environment Variables" in the Start menu.
- Click "Edit the system environment variables" > "Environment Variables..." > Path > Edit > New.
- Paste in the Node.js install path.
- Open a new PowerShell 7 terminal.
- Verify that your Node.js installation is working.
- Run
node -v
and verify that it matches the version you just installed with nvm.
- Run
- Set your npm script shell to PowerShell:
npm config set script-shell pwsh
8. Install Starship
Starship helps you configure your shell prompt and supports PowerShell.
- Download the latest
windows-msvc.msi
file for your architecture from https://github.com/starship/starship/releases. - Run the installer as an administrator.
- Add Starship to your profile.
- Run
code $PROFILE
. - Paste in
Invoke-Expression (&starship init powershell)
.
- Run
- Create a config at
~\.config\starship.toml
. (See my guide here for an example: https://electrovir.com/2024-08-29-awesome-terminal/#informative-and-personalized-prompt.)
Bonus Sections
Remote SSH into Windows VM
All of these commands will need to be run as an administrator.
- Install OpenSSH Server:
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
. - Restart.
- Start the server with
Start-Service sshd
and check it withGet-Service sshd
. - Start the server automatically:
Set-Service -Name sshd -StartupType 'Automatic'
. - Configure PowerShell 7 as the default shell:
New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShell -Value "C:\Program Files\PowerShell\7\pwsh.exe" -PropertyType String -Force
. - Allow port 22:
netsh advfirewall firewall add rule name="Open SSH Port 22" dir=in action=allow protocol=TCP localport=22 remoteip=any
. - Run
compmgmt.msc
. - Open "Services and Applications" and right-click "WMI Control" > "Properties".
- Select the "Security" tab and click the "Security" button.
- In the "Security for Root" window that appears, click "Advanced".
- Click "Add". Click "Select a principal".
- Type "Remote Management Users" and click "Check Names" and then OK.
- Click "Applies to" and select "This namespace and subnamespaces".
- Check all permissions and click OK.
- Click OK out through all of the remaining dialogs.
- Add your user to the "Remote Management Users" group in the same
compmgmt.msc
window.- Click on "Local Users and Groups".
- Open "Groups".
- Open "Remote Management Users".
- Click "Add...".
- Type in your username (that'll be used for remote SSH)
- Click "Check Names" and then OK.
- Restart the OpenSSH Server service (
Restart-Service sshd
).
Disable WSL
Running bash
in PowerShell will sometimes invoke WSL instead of Git Bash. To disable WSL entirely do the following:
- Run
wsl --uninstall
in a PowerShell 7 terminal. - Run "Control Panel" and navigate to Programs > "Programs and Features" > "Turn Windows features on or off"
- Uncheck "Windows Subsystem for Linux"
- Restart.
Using Git Bash bash
instead of WSL
To force PowerShell 7 to use Git Bash's bash instead of WSL, do the following:
- Open your profile file with
code $PROFILE
(in PowerShell 7). - Add
Set-Alias -Name bash -Value "C:\Users\<username>\AppData\Local\Programs\Git\usr\bin\bash"
Fix administrator access
In some situations Windows will run every single app as an administrator, even if you haven't clicked "Run as Administrator". This will cause tons of permissions headaches in the future. To fix this, you need to create a separate administrator user and separate dev user. Do all dev work in the dev user, only use the administrator user when absolutely necessary. There are 2 different ways of solving this, as noted below.
Check administrator access
- Check if your Windows account is an administrator.
- Open Settings > Accounts > "Your info".
- Check if your account says "Administrator" under your username. If it does, you're an administrator. If not, you're not.
- If you are not an administrator then something else is wrong and these workarounds won't help.
Solution 1: downgrade current user and create a separate admin user
- Open Settings > Accounts > "Other users" and click "Add Account".
- Click "I don't have this person's sign-in information".
- Click "Add a user without a Microsoft account".
- Create a user.
- Again in "Other users", find the new user you just created.
- Click "Change account type".
- Change it to an administrator.
- Login to your new admin user.
- Open Start.
- Click your username > the three dots in the top right > "Other users" > your new admin user.
- login.
- Open Settings > Accounts > "Other users".
- Expand your original user.
- Change its account type to "Standard" (not an administrator).
- Login back in to your non administrator user.
- Do all dev work in this user.
Solution 2: keep current admin user, create separate non-admin user
- MAke sure you're currently logged-in to the administrator user.
- Follow
Solution 1
's steps (above) until step 7, "Change it to an administrator." - Instead, ensure that the new user is not an administrator.
- Login to your new non-admin user.
- Open Start.
- Click your username > the three dots in the top right > "Other users" > your new non-admin user.
- login.
- Do all dev work in this user.
Windows in a VM: extra steps
Running Windows in a VM will require these extra steps if you're connecting to Docker containers outside of the Windows VM (as some systems don't support nested virtualization and thus you can't run Docker inside of Windows inside of a VM).
-
Forward local ports to the host Docker containers.
-
Run the following command as an administrator in PowerShell 7:
netsh interface portproxy add v4tov4 listenaddress=127.0.0.1 listenport=<docker-container-port> connectaddress=<host-LAN-ip> connectport=<docker-container-port>
-
Example:
netsh interface portproxy add v4tov4 listenaddress=127.0.0.1 listenport=6379 connectaddress=192.168.0.1 connectport=6379
-
-
Make sure your application code is connecting to the Docker container via
127.0.0.1
instead oflocalhost
.
Killing services
Servers and services seem to have a hard time closing down on Windows. Fix this by running taskkill /im node.exe /F
to kill all your Node.js processes.