---
title: File structure
metaTitle: File structure - Guide - Handsontable Documentation
permalink: /next/file-structure
canonicalUrl: /file-structure
tags:
  - directory
  - repository
  - file tree
  - folders
  - files
---

# File structure

The source files for this project are stored on GitHub in a [mono repository](https://github.com/handsontable/handsontable).
```
├── bin                    # Binary files
├── dist                   # Compiled files
├── docs                   # Documentation files
├── examples               # Code examples
├── handsontable.d.ts      # TypeScript definitions file
├── languages              # Translations (i18n)
├── resources              # Static files for README.md
├── scripts                # Scripts for building and deploying
├── src                    # Source files
├── test                   # Automated tests
└── wrappers
    ├── angular            # Wrapper for Angular
    ├── react              # Wrapper for React
    └── vue                # Wrapper for Vue 2
```
