From the course: Learning Angular

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Installing additional frameworks

Installing additional frameworks - Angular Tutorial

From the course: Learning Angular

Start my 1-month free trial

Installing additional frameworks

- [Instructor] Adding frameworks to Angular is pretty easy. You just have to know where to do it, so let's take a look at what it would take to add jQuery and Bootstrap to an Angular project. Now, the best way to do this is by using something called npm, the node package manager, which is something that Angular already uses to install its own things. All the projects that are created here are listed in this package.json file. So you can see that there's a bunch of dependencies as well as devDependencies right here, and these have all been installed through npm into a folder called node modules. If you open up this folder, you'll notice that it's got all of those references to these different applications, or these different packages. So all you have to do is install additional packages into those places. We're going to do that by using a terminal, so I'm going to switch over to the Mac Terminal. On a PC, you would be using Git Bash, or some browser that allows you to use Unix…

Contents