Search⌘ K
AI Features

Technical Requirements for Working Locally

Explore the necessary tools and steps to configure your local development environment for coding and testing React applications. This lesson guides you through installing Visual Studio Code, Node.js, and npm, and preparing your project to run tests locally, enabling smoother hands-on practice and development.

Tools

While the exercises in this course are mostly embedded within each lesson in the browser, the following sections detail the tools you need to do the lessons locally on your computer.

Visual Studio Code

A code editor such as Visual Studio Code is required to write code.

Visual Studio Code can be installed from here.

Node.js and npm.

The projects that you will be working on require npm. The tests will also be executed by a node.js process.

Both Node.js and npm can be installed from here. You’ll need at least the 5.2 version of npm.

Working locally

If you are working locally on your computer, download the code to your computer. Open the code editor in the relevant lesson start folder. You’ll need to install the dependencies using the following command before starting:

npm install