Thursday, 23 March, 2023 UTC


Summary

By default, all Node.js project uses NPM or Node Package Manager as their default package manager. We can use the command npm install or npm i followed by the package name and some options to install any dependency package from the node package manager. The– save option is one such option that the npm install or npm i command takes. In this article, we’ll discuss the –save option passed with npm install and also understand the use of other types of save options such as save-dev, save-prod, etc. If you want to learn more about NPM or Node Package Manager,…