summaryrefslogtreecommitdiff
path: root/src/node_modules/chance/docs/usage/bower.md
blob: 41b85d401cf9c9130ec98baf6f067d0c3bd9088d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# bower

Chance can be easily installed with [Bower](https://bower.io)

```bash
bower install chance
```

then in the HTML of your app:

```html
<!-- Load Chance -->
<script type="text/javascript" src="bower_components/chance/chance.js"></script>
<script>
  // Use Chance
  alert(chance.string());
</script>
```