beholder
beholder copied to clipboard
The Clojure directory watcher from Krell as a standalone library.
The following error is found on Ubuntu 20 ``` SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. ```
The LICENSE file is EPL but the README says > Distributed under the MIT License.
This upgrades the transitive dependency on the jna library from the version 5.7.0 to 5.12.1 which has a number of M1 arch related fixes. This seems to make the following...
From https://github.com/gmethvin/directory-watcher?tab=readme-ov-file#configuration: > By default, DirectoryWatcher will try to prevent duplicate events (...). This is done by creating a hash for every file encountered and keeping that hash in memory....
#### Story I have a scenario where I'm watching a directory for one specific file (to be added/changed/deleted). However this file is in a directory with many subdirectories and nested...
Hi, Just tried beholder a bit: (require '[nextjournal.beholder :as beholder]) (def watcher (beholder/watch prn "/tmp/")) But it didn't emit the modify event when the file is not changed, for example,...
Currently, beholder can only handle directories, not files (i.e. it inherits https://github.com/gmethvin/directory-watcher/issues/95). It would be nice to work around this upstream. Here is some code I use in my own...
Previously, the stacktrace would be silently discarded unless a logger was registered with a level of debug or lower. I tested this manually but have not added unit tests.
Hi, Just noticed a weird thing, that beholder takes 45s to watch a dir on my pc, but it almost instantly finishes the job on another dir, is it normal?...