Watch is a very simple tool that does one thing: run a command, and every time source files change in a directory, shutdown the current invocation gracefully and restart it.
deno -A jsr:@effectionx/watch npm start
Watch will send SIGINT and SIGTERM to your command, and then wait until its
stdout
stream is closed, indicating that it has no further output. It will not
attempt to start your command again until that has happened. This is important,
because your process might be holding onto any number of resources that have to
be safely released before exiting.
If you are running this command inside a git repository, it will only perform restarts on files that are under source control, or could be candidates for source control (not ignored).
Most of the time, you will use this an executable. However, if you want to create your own watch from within a library, you can But if you want to write your own
import { each, main } from "effection";
import { watch } from "@effectionx/watch";
await main(function* () {
const changes = watch({
path: "./src",
cmd: "npm test",
});
for (let start of yield* each(changes)) {
console.log(start);
yield* each.next();
}
});