2015-09-10 11:29:35 -07:00
# tree-sitter
2014-02-19 09:28:31 -08:00
2018-01-10 13:44:23 -08:00
[](https://travis-ci.org/tree-sitter/tree-sitter)
2017-08-09 10:29:15 -07:00
[](https://ci.appveyor.com/project/maxbrunsfeld/tree-sitter/branch/master)
2014-03-09 12:19:04 -07:00
2018-07-10 14:09:22 -07:00
Tree-sitter is a parser generator tool and an incremental parsing library. It can build a concrete syntax tree for a source file and efficiently update the syntax tree as the source file is edited. Tree-sitter aims to be:
2015-09-10 11:29:35 -07:00
2018-06-12 17:41:27 -07:00
* **General** enough to parse any programming language
* **Fast** enough to parse on every keystroke in a text editor
2018-07-10 14:09:22 -07:00
* **Robust** enough to provide useful results even in the presence of syntax errors
* **Dependency-free** so that the runtime library (which is written in pure C) can be embedded in any application
2015-09-10 11:29:35 -07:00
2019-04-30 13:00:27 -07:00
[Documentation ](https://tree-sitter.github.io/tree-sitter/ )