Skip to content

Latest commit

 

History

History
22 lines (11 loc) · 568 Bytes

NPM.md

File metadata and controls

22 lines (11 loc) · 568 Bytes

Node Package Manager

NPM is a way to install Javascript libraries on your system... like pip for python.

First you have to install node.js

bash sudo apt install nodejs

Then you can install using:

bash sudo apt install npm

You can use the npm website to find packages, and instructions on how to install them.

What is package.json?

It holds all your application's information, importantly it's dependencies!

Install, remove, update & list packages

npm i <package_name>