Bower: Unterschied zwischen den Versionen

Aus Open Source Ecology - Germany
Zur Navigation springen Zur Suche springen
 
(5 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
 +
http://bower.io/ - a package manager for the web. It offers a generic, unopinionated solution to the problem of front-end package management.
 +
 
==Intro==
 
==Intro==
 
* [https://www.youtube.com/watch?v=Rx_0-0vF-AE How To Code: Twitter Bower]
 
* [https://www.youtube.com/watch?v=Rx_0-0vF-AE How To Code: Twitter Bower]
 
* [https://www.youtube.com/watch?v=o9Xo_WFAyqg Google I/O 2013 - Clientside Package Management: Less Work, More Awesome]
 
* [https://www.youtube.com/watch?v=o9Xo_WFAyqg Google I/O 2013 - Clientside Package Management: Less Work, More Awesome]
 
* [https://github.com/sayanee/Build-Podcast/tree/master/045-bower Build Podcast ep 045 - Bower]
 
* [https://github.com/sayanee/Build-Podcast/tree/master/045-bower Build Podcast ep 045 - Bower]
 +
* [http://tech.pro/tutorial/1190/package-managers-an-introductory-guide-for-the-uninitiated-front-end-developer Package Managers: An Introductory Guide For The Uninitiated Front-End Developer]
  
 
==Files==
 
==Files==
 
* '''bower.json''' - name, version and dependencies.
 
* '''bower.json''' - name, version and dependencies.
 +
* '''.bowerrc''' - directory (for installing the packages), json
  
 
==Commands==
 
==Commands==
Zeile 12: Zeile 16:
 
* bower search <package>
 
* bower search <package>
 
* bower info <package>
 
* bower info <package>
* bower install - installs the packages defined in the bower.json file.
+
* bower install
 +
** installs the packages defined in the bower.json file.
 
* bower install <package>
 
* bower install <package>
 +
* bower install <package> --save
 +
** installs the packages and adds it to the bower.json with version "latest"
 
* bower install <package>#1.2.0
 
* bower install <package>#1.2.0
 
* bower uninstall <package>
 
* bower uninstall <package>
 +
 +
==Components==
 +
* [http://sindresorhus.com/bower-components/ Bower components]
  
 
==Others==
 
==Others==

Aktuelle Version vom 19. August 2013, 22:20 Uhr

http://bower.io/ - a package manager for the web. It offers a generic, unopinionated solution to the problem of front-end package management.

Intro

Files

  • bower.json - name, version and dependencies.
  • .bowerrc - directory (for installing the packages), json

Commands

  • bower --version
  • bower help
  • bower search <package>
  • bower info <package>
  • bower install
    • installs the packages defined in the bower.json file.
  • bower install <package>
  • bower install <package> --save
    • installs the packages and adds it to the bower.json with version "latest"
  • bower install <package>#1.2.0
  • bower uninstall <package>

Components

Others

See Grunt.