Search⌘ K
AI Features

Creating a basic project

Explore the manual process of creating a React and TypeScript project. Learn to configure the project folder structure, create the package.json file, and add a root HTML page to host your React application. This lesson prepares you to build a robust development environment from scratch.

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
...