Adam. R

Working with Visual Studio Code on Ubuntu on WSL2

Created February 26, 2022

Introduction

I have already done some WSL posts, so lets continue by me telling you how to intergate WSL on Visual Studio Code! Just for a breif review, Windows Subsystem for Linux (WSL) allows you to leverage the benefits of Linux package management and command line tools to streamline your development workflow. This is particularly useful for web developers and data scientists. The easiest way to access your Ubuntu development environment in WSL is using Visual Studio Code via the built in Remote extension.

In this tutorial you will learn:

What you will need:


Install Visual Studio Code

One of the advantages of WSL is that it can interact with the native Windows version of Visual Studio Code using its remote development extension.

To install Visual Studio Code visit the Microsoft Store and search for Visual Studio Code.

Then click Install. vsc install microsoft store.png

Alternatively, you can install Visual Studio Code from the web link here. vsc_web_download.png

During installation, under the Additional Tasks step, ensure the Add to PATH option is checked. vsc_add_path.png Once the installation is complete, open Visual Studio Code.


Install the Remote Development Extension

Navigate to the Extensions menu in the sidebar and search for Remote Development.

This is an extension pack that allows you to open any folder in a container, remote machine, or in WSL. Alternatively, you can just install Remote - WSL. remote dev extension vsccc.png Once installed we can test it out by creating an example local web server with Node.js


Install Node.js and create a new project

Open your WSL Ubuntu terminal and ensure everything is up to date by typing:

sudo apt update

And then

sudo apt upgrade

Entering your password and pressing Y when prompted.

Next, install Node.js and npm:

sudo apt-get install nodejs

sudo apt install npm

Press Y when prompted.

Now, create a new folder for our server.

mkdir serverexample/

Then navigate into it:

cd serverexample/

Now, open up your folder in Visual Studio Code, you can do this by typing:

code .

The first time you do this, it will trigger a download for the necessary dependencies:

Once complete, your native version of Visual Studio Code will open the folder.


Creating a basic web server

In Visual Studio Code, create a new file called package.json and add the following text

{

"name": "Demo",

"version": "1.0.0",

"description": "demo project.",

"scripts": {

"lite": "lite-server --port 10001",

"start": "npm run lite"

},

"author": "",

"license": "ISC",

"devDependencies": {

"lite-server": "^1.3.1"

}

}

Save the file and then, in the same folder, create a new one called index.html

Add the following text, and then save and close:

<h1>Hello World<h1>

Now return to your Ubuntu terminal (or use the Visual Studio Code terminal window) and type the following to install a server defined by the above specifications detailed in package.json:

npm install

Finally, type the following to launch the web server:

npm start

You can now navigate to localhost:10001 in your native Windows web browser by using CTRL+Left Click on the terminal links.


Conclusion

By using Ubuntu on WSL you’re able to take advantage of the latest Node.js packages available on Linux as well as the more streamlined command line tools.

If you found this usful then please share this and follow me!