# Handsontable distributions ## Full distribution (recommended) The full distribution allows you to use Handsontable by including just 2 files: ```html ``` You can also use minified files: ```html ``` **handsontable.full.js** and **handsontable.full.css** are compiled with ___all___ the needed dependencies. ## Bare distribution If you are a "Bob the Builder" kind of hacker, you will need to load Handsontable JS, CSS and their dependencies: ```html ``` **handsontable.js** and **handsontable.css** are compiled ___without___ the needed dependencies. You will have to include `pikaday.js`, `moment.js`, `numbro.js` and `hot-formula-parser.js` on your own ie. from JSDelivr CDN. ## Internationalization It is possible to include files which will register languages dictionaries. They allow to translate parts of Handsontable UI. You can either use only particular languages files or include all of them at once as a single file. All the information about the API and additional options can be found at our [official documentation](https://handsontable.com/docs/tutorial-internationalization.html). ```html ``` ## Custom distribution If you want to build your own custom Handsontable package distribution check out our [guide](https://docs.handsontable.com/tutorial-custom-build.html) covering all the details.