Setting up Web Development environment in Windows + linux
Rakesh Potnuru
written by Rakesh Potnuru3 min read

Setting up Web Development environment in Windows + linux

In a previous blog, I shared some amazing online playgrounds to quickly start your dev environment. But we all need a local setup at some point. Development with windows is not that great. When working with large projects you have to use Linux for some stuff. For this, we need a virtual machine and a Linux distro. But windows introduced Windows Subsystem for Linux(WSL) so that we can do Linux stuff inside windows. In this blog, let's set up a Web Development environment to build production-level applications.

Let's get started

Let'SGetStartedGIF

Frontend

Setting frontend tools like editor, browser, etc.

Setup VSCode

Visual Studio Code is so far the best code editor for Front-end development. So, let's install it from here

Visual Studio Code

Recommended extensions:

Optional extensions:

Browser

Recommended browser for JavaScript debugging - Google Chrome

Google Chrome Browser

Recommended browser for design and CSS - Firefox developer edition

Firefox Browser Developer Edition

This browser is the ultimate weapon for all the design stuff. itsrakesh.co

Some main features I like in this-

  • Style Editor - Firefox made it really easy to test CSS quickly with the style editor. You can write all the CSS for an element in this editor and if you are satisfied just copy and use it in your project. This way you don't need to reload the page every time you make changes to your CSS.

Firefox style editor

  • Visual Editing - Firefox made this tool to help animators and visual designers.

Firefox visual editing

Recommended browser extensions-

Backend

For the backend, VSCode is fine for small projects. But for large projects Jet brains IDEs will be useful.

Setting up WSL2

Windows Subsystem for Linux(WSL) is a feature Windows introduced to do Linux things inside Windows. WSL2 is a faster version of WSL1 with added features. This is not a simulation it's a real Linux kernel inside Windows.

Requirements,

  • You must be running Windows 10 version 2004 and higher (Build 19041 and higher) or Windows 11.

To install WSL,

  • Make sure your Windows updates are done.
  • Open Powershell and run
bash
1wsl --install
  • Now you have to enable the WSL feature, to do so,
    • In the search bar, type "Turn Windows features on or off"
    • Search for "Windows Subsystem for Linux" and enable it by checking the box.
    • Now restart. That's it we now enabled WSL. Tip: Alternatively you can just run this command.
bash
1dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart

We now need to download a Linux distro to use with WSL. You can install any distro but I recommend Ubuntu because it has special support. To install the Ubuntu distro,

  • Open Microsoft store search for "Ubuntu 20.04.4" -> Click "Get" -> Install

Upgrade to WSL2

To upgrade just run this command,

bash
1wsl --set-version <distro-name> 2

Replace <distro-name> with your distro. In our case,

bash
1wsl --set-version Ubuntu-20.04.4 2

Tip: If you want to go through the Windows file system. You have to mount the directory.

bash
1$ cd ~ 2$ cd /mnt/c

Ubuntu wsl

That's it! Now you can do all the cool Linux stuff inside Windows.

Optional

  • Windows terminal - With Windows terminal, you can open different instances of different terminals like browser tabs.

windows terminal

  • Oh my zsh - If you want to be cooler, then you can use zsh and install this.

oh my zsh

  • Remote - WSL - This is a VSCode extension to open WSL in integrated terminal.

Docker and docker desktop

docker desktop

Docker is a tool to build, ship, and share software easily. It is widely used in large projects. But it may not make sense for small projects.

That's it! This setup is enough for building full-stack websites.


What other things do you want to add? Do share in the comments.

Have a nice day!!!


Interested in
working
with me?

Let's Connect

© 2021 - 2025 itsrakesh. v2.