NPM tutorial for beginners | What is NPM?

preview_player
Показать описание

So, what is npm?

npm is the package manager for JavaScript packages and npm stands for Node Package Manager.

In the npm platform, you can find JavaScript tools which can be used in the browser (front end), the server (back end), or even the command line.

*** Some NPM Commands ***

Check Version of installed NPM : npm -v or npm --version

Update to already installed NPM : npm install npm -g

Install new package locally : npm install packageName or npm i packageName

Install new package globally : npm install packageName -g or npm i packageName -g

Check locally installed packages : npm ls

Check globally installed packages : npm ls -g

Update a already installed package : npm update packageName

Uninstall a package : npm uninstall packageName

************ Node.JS Tutorial in English 2021 Playlist ************

************ React.JS Tutorial in Hindi 2021 Playlist ************
Рекомендации по теме
Комментарии
Автор

Sir, how to understand Nodejs documentation for new developer. Plz teach by documentation

kamalCode