July 2019
Intermediate to advanced
416 pages
10h 6m
English
We've spent a lot of time building Angular applications, so it's only fair that we return to building a React one. In just the same way that Angular can work with Express and Node, React can also work with them and, since we have the Express/Node side already in place, we are now going to create our React client. We will start off with the command to create our React application with TypeScript support:
npx create-react-app crmclient --scripts-version=react-scripts-ts
This creates a standard React application, which we will modify to suit our needs. The first thing that we need to do is bring in support for Bootstrap, this time using the react-bootstrap package. While we are at it, we might as well install ...
Read now
Unlock full access