-
Book Overview & Buying
-
Table Of Contents
React Application Architecture for Production - Second Edition
By :
Before we get started, we need to set up our project. To be able to develop our project, we'll need the following things installed on our computer:
Node.js version 24 or above and npm version 11 or above.
There are multiple ways to install Node.js and npm. Here's a great article that goes into more detail: https://www.nodejsdesignpatterns.com/blog/5-ways-to-install-node-js.
VSCode (optional) is currently the most popular editor/IDE for JavaScript/TypeScript, so we'll be using it. It's open source, has great integration with TypeScript, and we can extend its features via extensions. It can be downloaded from https://code.visualstudio.com.
The code files for this chapter can be found here: https://github.com/PacktPublishing/React-Application-Architecture-for-Production-Second-Edition.
The repository can be cloned locally with the following command:
git clone https://github.com/PacktPublishing/React-Application-Architecture-for-Production...