Search⌘ K

Introduction: Decoupled React and ASP.NET Apps

Explore how to set up a decoupled web application by creating an ASP.NET Core Web API and a React frontend using TypeScript. Understand the benefits of separating projects, add code linting, and automatic formatting tools to improve code quality. By lesson end, you will be ready to build the frontend of a Q&A app.

We'll cover the following...

Overview

As we go through this course, we’ll develop a question-and-answer app; we will refer to it as the “Q&A” app. Users will be able to submit a question, and other users will be able to submit answers. They will also be able to search for previous questions and view the answers that were given to them. In this ...