New cheatsheet added: support for Bower (frontend package manager)

This commit is contained in:
poliveira89 2014-11-22 17:09:58 +00:00
parent 7eb405dcf8
commit 6f579f9234
1 changed files with 26 additions and 0 deletions

26
cheat/cheatsheets/bower Normal file
View File

@ -0,0 +1,26 @@
# Install a package locally
bower install <package-name>
# Install a package locally directly from github
bower install <user>/<repo>
# Install a specific package locally
bower install <package-name>#<version>
# Install a package locally and save installed package into bower.json
bower install <package-name> --save
# Retrieve info of a particular package
bower info <package-name>
# List local packages
bower list
# Search for a package by name
bower search <package-name>
# Update a package to their newest version
bower update <package-name>
# Remove a local package
bower uninstall <package-name>