I can\'t use npm install
using the command prompt in NodeJS. I\'m getting these errors when running npm install
:
module.js:339
I'm facing the same issue here.
If this occurs right after you run brew install yarn
try running yarn global add npm
and voilà - fixed!
I had the same error. npm uninstall npm -g
, rm -rf node_modules
didn't help me, because when I tried I was getting Error: Cannot find module 'semver'
. But I solve my problem with these steps (this will delete other global modules you may be using):
sudo rm -rf /usr/local/lib/node_modules
sudo rm -rf ~/.npm
brew uninstall --force node
brew install node
Hope this will help those who are getting a similar problem.
I faced with same trouble after brew installs yarn on my MacOs Sierra 10.12.6. (And the first try of installation fall after brew update self with a message " Homebrew must be run under Ruby 2.3! You're running 2.0.0. (RuntimeError)". So I re-run it.)
So I use n manager to reinstall npm.
I think the trouble can be caused that node was installed under sudo for case.
On Windows, downloading Node's MSI again and doing a 'Repair' worked for me.
Just remove the /node_modules folder and try again. ;)
You can use npm rm
to remove it.
You can also check this issue on GitHub. To be more specific about unnistal, try to follow this:
Uninstalling
So sad to see you go.
sudo
npm uninstall npm -g
Or, if that fails,sudo make uninstall More Severe Uninstalling
Usually, the above instructions are sufficient. That will remove npm, but leave behind anything you've installed.
If you would like to remove all the packages that you have installed, then you can use the npm ls command to find them, and then npm rm to remove them.
To remove cruft left behind by npm 0.x, you can use the included clean-old.sh script file. You can run it conveniently like this:
npm explore npm -g -- sh scripts/clean-old.sh npm uses two configuration files, one for per-user configs, and another for global (every-user) configs. You can view them by doing:
npm config get userconfig # defaults to ~/.npmrc npm config get globalconfig # defaults to /usr/local/etc/npmrc Uninstalling npm does not remove configuration files by default. You must remove them yourself manually if you want them gone. Note that this means that future npm installs will not remember the settings that you have chosen.
I faced this issues while running project on higher version of cli. To solve this issue you can simply comment out @angular-devkit/build-angular module and again you have to reinstall it through
npm install @angular-devkit/build-angular --save