Skip to content

Instantly share code, notes, and snippets.

@JosefJezek
Last active February 19, 2016 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JosefJezek/bab4fce0ac19f31bbfa8 to your computer and use it in GitHub Desktop.
Save JosefJezek/bab4fce0ac19f31bbfa8 to your computer and use it in GitHub Desktop.
How to fix Bower and Node dependencies

How to fix Bower and Node dependencies

Check versions

node -v
bower -v
npm -v

Install latest versions

npm install -g npm
npm install -g bower gulp

Clean caches

rm -rf bower_components
bower cache clean
bower install
rm -rf node_modules
npm cache clean
npm install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment