In this chapter, I continue adding features to the SportsStore application that I created in Chapter 7. I add support for a shopping cart and a checkout process and replace the dummy data with the data from the RESTful web service.
Preparing the Example Application
No preparation is required for this chapter, which continues using the SportsStore project from Chapter 7. Run the following command in the SportsStore folder to start the TypeScript compiler, the RESTful web service, and the development HTTP server:
npm start
Tip
The free source code download from apress.com that accompanies this book contains ...