Packages

Watchdog is a library that handles file system events. It's like Guard, but for Elixir.

Current section

Files

Jump to
watchdog README.md
Raw

README.md

# Watchdog 🐶
Watchdog is like [Guard](https://github.com/guard/guard), but written in Elixir.
It tries to make it easy to run tasks when file system events happen and it's
internal pipeline is based on [Plug](https://github.com/elixir-lang/plug).
## Useful links
- [Documentation](https://hexdocs.pm/watchdog)
- [Hex](https://hex.pm/packages/watchdog)
## Installation
The package can be installed by adding `watchdog` to your list of dependencies
in `mix.exs`:
``` elixir
def deps do
[{:watchdog, "~> 0.1.0", only: [:dev, :test]}]
end
```