--- id: package-management title: Package Management permalink: package-management.html prev: language-tooling.html next: environments.html --- ## CDN-hosted React We provide CDN-hosted versions of React [on our download page](/react/downloads.html). These pre-built files use the UMD module format. Dropping them in with a simple `
``` ## Using React from Bower Bower is a package manager optimized for the front-end development. If multiple packages depend on a package - jQuery for example - Bower will download jQuery just once. This is known as a flat dependency graph and it helps reduce page load. For more info, visit http://bower.io/ If you'd like to use bower, it's as easy as: ``` bower install --save react ``` ```html Hello React!
``` ## Using master We have instructions for building from `master` [in our GitHub repository](https://github.com/facebook/react).