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
2020-05-12 16:16:48 -07:00
- **General** enough to parse any programming language
- **Fast** enough to parse on every keystroke in a text editor
- **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
2020-05-12 16:16:48 -07:00
## Links
- [Documentation ](https://tree-sitter.github.io )
- [Rust binding ](lib/binding_rust/README.md )
- [WASM binding ](lib/binding_web/README.md )
- [Command-line interface ](cli/README.md )