0% found this document useful (0 votes)
1 views

npm-commands

To uninstall a package using npm, the command is 'npm uninstall <name>', with options to update package.json or uninstall globally. Local installs do not affect the application if no references exist, but global packages can cause crashes if referenced. Additionally, the document provides steps for installing React, including installing Node.js and using create-react-app.

Uploaded by

Logess War
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views

npm-commands

To uninstall a package using npm, the command is 'npm uninstall <name>', with options to update package.json or uninstall globally. Local installs do not affect the application if no references exist, but global packages can cause crashes if referenced. Additionally, the document provides steps for installing React, including installing Node.js and using create-react-app.

Uploaded by

Logess War
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

The command is simply npm uninstall <name>

The Node.js documents https://npmjs.org/doc/ have all the commands that you need to
know with npm.

A local install will be in the node_modules/ directory of your application. This


won't affect the application if a module remains there with no references to it.

If you're removing a global package, however, any applications referencing it will


crash.

Here are different options:

npm uninstall <name> removes the module from node_modules but does not update
package.json

npm uninstall <name> --save also removes it from dependenciesin package.json

npm uninstall <name> --save-dev also removes it from devDependencies in


package.json

npm uninstall -g <name> --save also removes it globally

npm uninstall -g <package-name>

-----------------------------------------------------------------------------------
--
React Installation
1. Install Nodejs and npm
2. Install react from terminal
a. npm install -g create-react-app
b.create-react-app --version
c. create-react-app <projectName>

You might also like