Popularity
1.9
Growing
Activity
0.0
Stable
8
1
3
Code Quality Rank:
L4
Monthly Downloads: 2
Programming language: C
License: MIT License
Tags:
Files And Directories
cassius alternatives and similar packages
Based on the "Files and Directories" category.
Alternatively, view cassius alternatives based on common mentions on social networks and blogs.
-
ex_guard
ExGuard is a mix command to handle events on file system modifications -
dir_walker
Simple Elixir file-system directory tree walker. It can handle large filesystems, as the tree is traversed lazily. -
eye_drops
Configurable Elixir mix task to watch file changes and run the corresponding command. -
librex
Elixir library to convert office documents to other formats using LibreOffice. -
elixgrep
An elixir framework to implement concurrent versions of common unix utilities, grep, find, etc.. -
Belt
Extensible file upload library with support for SFTP, S3 and Filesystem storage.
Elixir and Phoenix Application Security Platform
Replace Snyk, reCaptcha, and Cloudflare bot defense with the only application security platform built for Elixir and Phoenix.
Promo
paraxial.io
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of cassius or a related project?
Popular Comparisons
README
cassius
monitor linux file system events
Cassius.watch("lib", :all) # monitor events in a directory
monitored events are sent to the caller's pid
{:open, foobar} # {event, file_path}
These are the events you can monitor specifically (:all
monitors all events)
event | defn. |
---|---|
:close | file closed |
:access | file accessed |
:attrib | file metadata changed |
:close_write | file wrote and closed |
:close_no_write | file closed without write |
:create | file/directory created |
:delete | file/directory deleted |
:delete_self | file/directory itself deleted |
:modify | file modified |
:move_self | file/directory itself moved |
:moved_from | file left dir |
:moved_to | file entered dir |
:open | file opened |