InterviewSolution
Saved Bookmarks
| 1. |
How To Use Npm? |
|
Answer» There are 2 ways to install a package using NPM: globally and locally.
Whenever we create a project using npm, we need to provide a package.json file, which has all the DETAILS about our project. npm make it easy for us to set up this file. Let us set up our development project.
There are 2 ways to install a package using npm: globally and locally. Whenever we create a project using npm, we need to provide a package.json file, which has all the details about our project. npm make it easy for us to set up this file. Let us set up our development project. |
|