tree-sitter/cli
Guillaume Bertholon 1c7b518b9d
build(loader): make dependencies optional (#1638)
The `tree-sitter-loader` crate currently always pulls
`tree-sitter-highlight` and `tree-sitter-tags` as dependencies.
However, apart from the tree-sitter CLI, most clients will not need both
of these libraries.

This commit makes the dependencies optional, but still includes them by
default in order not to break the backward compatibility.
2024-07-28 10:59:21 +03:00
..
benches feat: add fuzz subcommand 2024-05-30 23:00:45 -04:00
config style: wrap comments 2024-04-11 22:35:43 -04:00
loader build(loader): make dependencies optional (#1638) 2024-07-28 10:59:21 +03:00
npm fix(cli): installation via authenticated proxy 2024-07-05 19:50:31 -04:00
src fix(rust): fix new clippy warnings 2024-07-28 10:12:32 +03:00
vendor Add a highlight subcommand 2019-02-19 12:32:03 -08:00
build.rs fix(rust): fix new clippy warnings 2024-07-28 10:12:32 +03:00
Cargo.toml build(deps): bump the cargo group across 1 directory with 9 updates 2024-07-05 03:36:02 -04:00
README.md docs: update badges; fix markdown lint complains 2023-04-16 23:39:08 +03:00

Tree-sitter CLI

crates.io badge npmjs.com badge

The Tree-sitter CLI allows you to develop, test, and use Tree-sitter grammars from the command line. It works on MacOS, Linux, and Windows.

Installation

You can install the tree-sitter-cli with cargo:

cargo install tree-sitter-cli

or with npm:

npm install tree-sitter-cli

You can also download a pre-built binary for your platform from the releases page.

Dependencies

The tree-sitter binary itself has no dependencies, but specific commands have dependencies that must be present at runtime:

  • To generate a parser from a grammar, you must have node on your PATH.
  • To run and test parsers, you must have a C and C++ compiler on your system.

Commands

  • generate - The tree-sitter generate command will generate a Tree-sitter parser based on the grammar in the current working directory. See the documentation for more information.

  • test - The tree-sitter test command will run the unit tests for the Tree-sitter parser in the current working directory. See the documentation for more information.

  • parse - The tree-sitter parse command will parse a file (or list of files) using Tree-sitter parsers.