...

/

Creating a basic project

Creating a basic project

In this lesson, we will start creating a React and TypeScript project by creating the folder structure, the 'package.json' and the HTML file that will host the React app.

We'll cover the following...

Technical requirements #

We are going to use the following tools in all the lessons where we’ll learn how to create a React and TypeScript project manually:

  • Node.js and npm. These can be installed from https://nodejs.org/en/download/. npm needs to be at least at version 5.2.
  • A code editor such as Visual Studio Code. Visual Studio Code can be installed from h
...