While React is the V in MVC, Angular is a full-blown framework. In this recipe, we will first take a look at how to install Angular 2 on our system using npm, and then we'll take a look at how to incorporate Bootstrap 4 CDN styles.
Replacing the Default Styles in Angular 2 QuickStart with Bootstrap 4 CDN CSS
Getting ready
To get ready, we will visit the QuickStart guide, from the official documentation, which can be found at https://angular.io/guide/quickstart. There are a couple of prerequisites that we need to satisfy, namely that we use Node version 6.9.x or greater and NPM version 3.x.x.
To check the versions we are using, we need to run the following commands in our console:
node -v;
npm -v
If you need to have multiple...