UNPKG

313 BMarkdownView Raw
1# bower
2
3Chance can be easily installed with [Bower](https://bower.io)
4
5```bash
6bower install chance
7```
8
9then in the HTML of your app:
10
11```html
12<!-- Load Chance -->
13<script type="text/javascript" src="bower_components/chance/chance.js"></script>
14<script>
15 // Use Chance
16 alert(chance.string());
17</script>
18```
19