# Handsontable distributions

## Bare distribution

If you are a "Bob the Builder" kind of hacker, you will need to load Handsontable JS, CSS and their dependecies:

```html
<script src="lib/jquery.min.js"></script>
<script src="jquery.handsontable.js"></script>
<script src="lib/bootstrap-typeahead.js"></script>
<script src="lib/jQuery-contextMenu/jquery.contextMenu.js"></script>
<script src="lib/jQuery-contextMenu/jquery.ui.position.js"></script>
<link rel="stylesheet" media="screen" href="jquery.handsontable.css">
<link rel="stylesheet" media="screen" href="lib/jQuery-contextMenu/jquery.contextMenu.css">
```

## Full distribution

To save your effort, the above code can be shortened by using the **full** distribution of Handsontable:

```html
<script src="lib/jquery.min.js"></script>
<script src="dist/jquery.handsontable.full.js"></script>
<link rel="stylesheet" media="screen" href="dist/jquery.handsontable.full.css">
```

Using this has the same effect as loading all the dependencies from the **bare** distribution.
