You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 week ago | |
---|---|---|
.cargo | 5 months ago | |
.github | 2 weeks ago | |
bin | 8 months ago | |
completions | 5 months ago | |
crates | 1 week ago | |
doc | 2 months ago | |
test | 6 years ago | |
.clippy-lints | 3 weeks ago | |
.editorconfig | 1 year ago | |
.gitattributes | 8 months ago | |
.gitignore | 2 years ago | |
.rustfmt.toml | 1 year ago | |
CITATION.cff | 3 weeks ago | |
CONTRIBUTING.md | 3 weeks ago | |
Cargo.lock | 3 weeks ago | |
Cargo.toml | 5 months ago | |
LICENSE | 6 years ago | |
README.md | 3 weeks ago |
README.md
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!
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!
Install
- With your package manager for Arch, Debian, Homebrew, Nix, Scoop, Chocolatey…
- From binary with Binstall:
cargo binstall watchexec-cli
- As pre-built binary package from Github
- From source with Cargo:
cargo install watchexec-cli
All options in detail: in the CLI README and in the manual page.
Augment
Watchexec pairs well with:
- checkexec: to run only when source files are newer than a target file
- just: a modern alternative to
make
- systemfd: socket-passing in development
Extend
- watchexec library: to create more specialised watchexec-powered tools! such as:
- cargo watch: for Rust/Cargo projects.
- clearscreen: to clear the (terminal) screen on every platform.
- command group: to run commands in process groups.
- ignore files: to find, parse, and interpret ignore files.
- project origins: to find the origin(s) directory of a project.
- notify: to respond to file modifications (third-party).
- globset: to match globs (third-party).