mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-03 14:21:02 +01:00
73 lines
3.3 KiB
Markdown
73 lines
3.3 KiB
Markdown
[![CI status on main branch](https://github.com/watchexec/watchexec/actions/workflows/tests.yml/badge.svg)](https://github.com/watchexec/watchexec/actions/workflows/tests.yml)
|
|
|
|
# Watchexec
|
|
|
|
Software development often involves running the same commands over and over. Boring!
|
|
|
|
`watchexec` is a **simple**, standalone tool that watches a path and runs a command whenever it detects modifications.
|
|
|
|
Example use cases:
|
|
|
|
* Automatically run unit tests
|
|
* Run linters/syntax checkers
|
|
* Rebuild artifacts
|
|
|
|
|
|
## Features
|
|
|
|
* Simple invocation and use, does not require a cryptic command line involving `xargs`
|
|
* Runs on OS X, Linux, and Windows
|
|
* Monitors current directory and all subdirectories for changes
|
|
* Coalesces multiple filesystem events into one, for editors that use swap/backup files during saving
|
|
* Loads `.gitignore` and `.ignore` files
|
|
* Uses process groups to keep hold of forking programs
|
|
* Provides the paths that changed in environment variables
|
|
* Does not require a language runtime, not tied to any particular language or ecosystem
|
|
* [And more!](./crates/cli/#features)
|
|
|
|
|
|
## Quick start
|
|
|
|
Watch all JavaScript, CSS and HTML files in the current directory and all subdirectories for changes, running `npm run build` when a change is detected:
|
|
|
|
$ watchexec -e js,css,html npm run build
|
|
|
|
Call/restart `python server.py` when any Python file in the current directory (and all subdirectories) changes:
|
|
|
|
$ watchexec -r -e py -- python server.py
|
|
|
|
More usage examples: [in the CLI README](./crates/cli/#usage-examples)!
|
|
|
|
## Install
|
|
|
|
<a href="https://repology.org/project/watchexec/versions"><img align="right" src="https://repology.org/badge/vertical-allrepos/watchexec.svg" alt="Packaging status"></a>
|
|
|
|
- With [your package manager](./doc/packages.md) for Arch, Debian, Homebrew, Nix, Scoop, Chocolatey…
|
|
- From binary with [Binstall](https://github.com/cargo-bins/cargo-binstall): `cargo binstall watchexec-cli`
|
|
- As [pre-built binary package from Github](https://github.com/watchexec/watchexec/releases/latest)
|
|
- From source with Cargo: `cargo install --locked watchexec-cli`
|
|
|
|
All options in detail: [in the CLI README](./crates/cli/#installation),
|
|
in the online help (`watchexec -h`, `watchexec --help`, or `watchexec --manual`),
|
|
and [in the manual page](./doc/watchexec.1.md) ([PDF](./doc/watchexec.1.pdf)).
|
|
|
|
|
|
## Augment
|
|
|
|
Watchexec pairs well with:
|
|
|
|
- [checkexec](https://github.com/kurtbuilds/checkexec): to run only when source files are newer than a target file
|
|
- [just](https://github.com/casey/just): a modern alternative to `make`
|
|
- [systemfd](https://github.com/mitsuhiko/systemfd): socket-passing in development
|
|
|
|
## Extend
|
|
|
|
- [watchexec library](./crates/lib/): to create more specialised watchexec-powered tools! such as:
|
|
- [cargo watch](https://github.com/watchexec/cargo-watch): for Rust/Cargo projects.
|
|
- [clearscreen](https://github.com/watchexec/clearscreen): to clear the (terminal) screen on every platform.
|
|
- [command group](https://github.com/watchexec/command-group): to run commands in process groups.
|
|
- [ignore files](./crates/ignore-files/): to find, parse, and interpret ignore files.
|
|
- [project origins](./crates/project-origins/): to find the origin(s) directory of a project.
|
|
- [notify](https://github.com/notify-rs/notify): to respond to file modifications (third-party).
|
|
- [globset](https://crates.io/crates/globset): to match globs (third-party).
|