Skip to content

Commit

Permalink
jQuery UI: Adding guide to using jQuery UI with Bower.
Browse files Browse the repository at this point in the history
  • Loading branch information
tjvantoll committed Apr 25, 2014
1 parent 2a21fbf commit 8bcca9b
Show file tree
Hide file tree
Showing 3 changed files with 152 additions and 1 deletion.
1 change: 1 addition & 0 deletions order.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
- how-to-use-the-widget-factory
- environments:
- amd
- bower
- jquery-mobile:
- getting-started
- theme-roller
2 changes: 1 addition & 1 deletion page/jquery-ui/environments/amd.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ In this article we'll walk through the process of using AMD with jQuery UI. Let'

We'll need to download three things to get up and running: jQuery core, jQuery UI, and an AMD loader.

While any AMD loader will work, we'll use RequireJS in this article, which you can download from <http://requirejs.org/docs/download.html>. If you don't have a version of jQuery core handy, you can get it from <http://jquery.com/download/>, and you can download jQuery UI directly from <http://jqueryui.com/>.
While any AMD loader will work, we'll use RequireJS in this article, which you can download from <http://requirejs.org/docs/download.html>. If you don't have a version of jQuery core handy, you can get it from <http://jquery.com/download/>, and you can download jQuery UI directly from <http://jqueryui.com/>. Alternatively you can [download these libraries using a package manager such as Bower](/jquery-ui/environments/bower/).

### Directory Structure

Expand Down
150 changes: 150 additions & 0 deletions page/jquery-ui/environments/bower.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
---
title: Using jQuery UI with Bower
level: intermediate
---

[Bower](http://bower.io/) is a package manager for the Web. You can use Bower to download libraries like jQuery UI from the command line, without having to manually download each project from their respective sites.

As an example, suppose we're starting a new project and we need to use [jQuery UI's accordion widget](http://jqueryui.com/accordion/). We'll create a new directory for our project, and add the boilerplate `index.html` shown below.

```
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Projects</title>
</head>
<body>
<div id="projects">
<h3>jQuery Core</h3>
<p>jQuery is a fast, small, and feature-rich JavaScript library...</p>
<h3>jQuery UI</h3>
<p>jQuery UI is a curated set of user interface interactions...</p>
<h3>jQuery Mobile</h3>
<p>jQuery Mobile is a HTML5-based user interface system...</p>
</div>
<script>
$( "#projects" ).accordion();
</script>
</body>
</html>
```

This examples fails with a JavaScript error because neither jQuery core nor jQuery UI are loaded. Let's load them with Bower.

### Downloading jQuery UI With Bower

Libraries are downloaded with Bower using the `bower install` command. To install jQuery UI, run `bower install jquery-ui`. Doing so creates the following (simplified) directory structure.

*Note: If you get an error that the `bower` command is not found, checkout [Bower's installation instructions](http://bower.io/#installing-bower).*

<pre>
.
├── bower_components
│   ├── jquery
│   │   ├── dist
│   │   │   ├── jquery.js
│   │   │   └── jquery.min.js
│   │   └── src
│   └── jquery-ui
│   ├── themes
│   │   ├── base
│   │   │   ├── jquery-ui.css
│   │   │   ├── accordion.css
│   │   │   ├── ...
│   │   │   └── minified
│   │   │   ├── jquery-ui.min.css
│   │   │   ├── accordion.min.css
│   │   │   └── ...
│   │   └── [The rest of jQuery UI's themes]
│   └── ui
│   ├── jquery-ui.js
│   ├── accordion.js
│   ├── ...
│   └── minified
│   ├── jquery-ui.min.js
│   ├── accordion.min.js
│   └── ...
└── index.html
</pre>

A couple of things happened here. First, Bower knew that jQuery UI depends on jQuery core, so it downloaded both libraries automatically. Second, all of jQuery UI's files for the latest release were conveniently placed in a `jquery-ui` directory within a newly created `bower_components` directory.

*Note: If you don't want the latest version, you can optionally provide a version number to `bower install`. For instance `bower install jquery-ui#1.10.4` installs version 1.10.4 of jQuery UI.*

Now that we have the files available, we have to use them.

### Using Bower Downloaded Files

We have a few different options for using the files downloaded with Bower. The easiest is to use the minified and concatenated files in our `bower_components/jquery` and `bower_components/jquery-ui` directories. This approach is shown below.

```
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Projects</title>
<link rel="stylesheet" href="bower_components/jquery-ui/themes/base/jquery-ui.css">
</head>
<body>
<div id="projects">
<h3>jQuery Core</h3>
<p>jQuery is a fast, small, and feature-rich JavaScript library...</p>
<h3>jQuery UI</h3>
<p>jQuery UI is a curated set of user interface interactions...</p>
<h3>jQuery Mobile</h3>
<p>jQuery Mobile is a HTML5-based user interface system...</p>
</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/jquery-ui/ui/minified/jquery-ui.min.js"></script>
<script>
$( "#projects" ).accordion();
</script>
</body>
</html>
```

This code successfully builds our accordion widget, but it also includes the entirety of jQuery UI when we only need the accordion widget. Since there's a lot more than an accordion widget in jQuery UI, this forces the user to download far more than they need.

Because Bower also downloaded jQuery UI's individual source files, we can alternatively use them to send the user just the accordion widget and its dependencies. The following example builds the same accordion widget taking this approach.

```
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Projects</title>
<link rel="stylesheet" href="bower_components/jquery-ui/themes/base/core.css">
<link rel="stylesheet" href="bower_components/jquery-ui/themes/base/theme.css">
<link rel="stylesheet" href="bower_components/jquery-ui/themes/base/accordion.css">
</head>
<body>
<div id="projects">
<h3>jQuery Core</h3>
<p>jQuery is a fast, small, and feature-rich JavaScript library...</p>
<h3>jQuery UI</h3>
<p>jQuery UI is a curated set of user interface interactions...</p>
<h3>jQuery Mobile</h3>
<p>jQuery Mobile is a HTML5-based user interface system...</p>
</div>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/jquery-ui/ui/core.js"></script>
<script src="bower_components/jquery-ui/ui/widget.js"></script>
<script src="bower_components/jquery-ui/ui/accordion.js"></script>
<script>
$( "#projects" ).accordion();
</script>
</body>
</html>
```

From here, you can hook jQuery UI's files into your own custom build system to concatenate and minify your resources for production. If you're a RequireJS user, checkout our [guide on how to use jQuery UI with AMD](/jquery-ui/environments/amd/).

0 comments on commit 8bcca9b

Please sign in to comment.