Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you uninstall Bower (the package manager)?

Tags:

How do you uninstall Bower? I mean the package manager, not the packages (that I have already uninstalled).

like image 471
Romain Poirier Avatar asked Jun 05 '14 07:06

Romain Poirier


People also ask

Is bower a package manager?

Bower is a package manager, like npm, which manages frameworks, libraries, assets, and utilities, installs them, and makes sure they are up to date. Traditionally, many web development projects combined npm and Bower.

How do I delete a dependency in npm?

To remove a dev dependency, you need to attach the -D or --save-dev flag to the npm uninstall, and then specify the name of the package. You must run the command in the directory (folder) where the dependency is located.


1 Answers

To uninstall global package :

npm uninstall -g bower 

See this thread : how to uninstall npm modules in node js?

like image 176
dpellier Avatar answered Oct 23 '22 07:10

dpellier