Skip to content

Instantly share code, notes, and snippets.

@crccheck
Last active August 29, 2015 14:01
Show Gist options
  • Save crccheck/e5df51a891dbe5a2c231 to your computer and use it in GitHub Desktop.
Save crccheck/e5df51a891dbe5a2c231 to your computer and use it in GitHub Desktop.
Rosetta stone for web package managers (not extensive)
command pip bundler npm bower
Init touch requirements.txt bundle init npm init bower init
List installed packages pip freeze or pip list bundle list npm ls -g --depth 0 bower list
Search for a package npm search <name> bower search
Install a package pip install <name> npm install <name> --save-dev bower install <name>
Install everything pip install -r requirements.txt bundle install npm install
List outdated packages pip list --outdated bundle outdated npm outdated
Update everything pip install --upgrade bundle update npm update --save-dev bower update
Uninstall a package pip uninstall <name> npm uninstall <name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment