From the course: Mastering Web Developer Interview Code

Unlock this course with a free trial

Join today to access over 22,600 courses taught by industry experts.

Do you know how to use npm?

Do you know how to use npm?

- [Expounder] If you're a developer applying for a job today, there's one key piece of tooling software that you're going to need to know. And that's NPM, the Node Package Manager. It's part of NodeJS but it's its own sort of separate component. So let's take a look at how it works and use it to create a simple Bootstrap project. NPM allows you to create or use a variety of packages available to developers on the web. The main website where you can find these packages, is npmjs.com. You can find tons of reusable code, including frameworks and libraries like AngularJS, React and Bootstrap and easily install them through the terminal. When you go to the site, you can do a search for a module. Let's go ahead and try looking for bootstrap. And when you click on this right here, you can see that it gives you information about this framework and how to install it with different methods. It also gives you a convenient link to the…

Contents