fsw is a tool for recursively watching the current working directory and running a command when its contents change.
It's integrated with Git, so it won't rerun the command if an ignored file changes.
You can find static binaries for Linux and macOS on the Github Releases page.
Alternatively, you can use cargo
to install the tool.
cargo install fsw
fsw <command> [<arg>]...
- Reduce binary file size (on Linux from ~5.3MB to ~625KB)
- Switch to Rust 2021 Edition
- Rework design to not watch ignored directories, improving reliability and resource utilization
- Reduce debouncing period to 125ms
- Mark fsw output with "fsw:"
- Bump notify and transitive dependencies
- Initial release.