All Projects → tywkeene → Go Fsevents

tywkeene / Go Fsevents

Licence: mit
Recursive filesystem event watcher using inotify in golang

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Labels

Projects that are alternatives of or similar to Go Fsevents

Dogo
Monitoring changes in the source file and automatically compile and run (restart).
Stars: ✭ 237 (+121.5%)
Mutual labels:  inotify
DirectoryWatcher
Watch changes in directories
Stars: ✭ 70 (-34.58%)
Mutual labels:  inotify
Gowatch
🚀 gowatch is a command line tool that builds and (re)starts your go project everytime you save a Go or template file.
Stars: ✭ 539 (+403.74%)
Mutual labels:  inotify
pmOCR
A wrapper for tesseract / abbyyOCR11 ocr4linux finereader cli that can perform batch operations or monitor a directory and launch an OCR conversion on file activity
Stars: ✭ 53 (-50.47%)
Mutual labels:  inotify
gevent inotifyx
gevent compatibility for inotifyx
Stars: ✭ 22 (-79.44%)
Mutual labels:  inotify
docker base images
Vlad's Base Images for Docker
Stars: ✭ 61 (-42.99%)
Mutual labels:  inotify
Inotify Win
A port of the inotify-wait tool for Windows
Stars: ✭ 214 (+100%)
Mutual labels:  inotify
Inotify
📢 JS achieve the browser title flashing, scrolling, voice prompts, Chrome/Safari/FireFox/IE notice. has no dependencies. It not interfere with any JavaScript libraries or frameworks. has a reasonable footprint 5.05kb (gzipped: 1.75kb)
Stars: ✭ 892 (+733.64%)
Mutual labels:  inotify
sftp-gateway
This repository contains a docker image configured to use the SSH File Transfer Protocol (SFTP) to transfer all its files to Cloud Blob Storage Services. This image can be deployed on a Kubernetes cluster with Helm.
Stars: ✭ 18 (-83.18%)
Mutual labels:  inotify
Trackma
Open multi-site list manager for Unix-like systems. (ex-wMAL)
Stars: ✭ 490 (+357.94%)
Mutual labels:  inotify
inotify-rs
Idiomatic inotify wrapper for the Rust programming language
Stars: ✭ 219 (+104.67%)
Mutual labels:  inotify
watcherd
A shell daemon that will listen for directory changes and execute custom commands for each event.
Stars: ✭ 48 (-55.14%)
Mutual labels:  inotify
Watcher
Watcher is a daemon that watches specified files/folders for changes and fires commands in response to those changes. It is similar to incron, however, configuration uses a simpler to read ini file instead of a plain text file. Unlike incron it can also recursively monitor directories. It's also written in Python, making it easier to hack.
Stars: ✭ 127 (+18.69%)
Mutual labels:  inotify
gowatch
watch go files for developer, support run test case and auto reload server application
Stars: ✭ 18 (-83.18%)
Mutual labels:  inotify
Onedrived Dev
A Microsoft OneDrive client for Linux, written in Python3.
Stars: ✭ 672 (+528.04%)
Mutual labels:  inotify
Node Inotify
Inotify bindings for Node.JS
Stars: ✭ 237 (+121.5%)
Mutual labels:  inotify
hxinotify
Haxe→C++/Hashlink/Neko bindings to the inotify linux kernel subsystem
Stars: ✭ 21 (-80.37%)
Mutual labels:  inotify
Entr
A utility for running arbitrary commands when files change
Stars: ✭ 976 (+812.15%)
Mutual labels:  inotify
Gerbera
UPnP Media Server for 2021: Stream your digital media through your home network and consume it on all kinds of UPnP supporting devices 📱💻📺
Stars: ✭ 710 (+563.55%)
Mutual labels:  inotify
Fswatch
A cross-platform file change monitor with multiple backends: Apple OS X File System Events, *BSD kqueue, Solaris/Illumos File Events Notification, Linux inotify, Microsoft Windows and a stat()-based backend.
Stars: ✭ 3,974 (+3614.02%)
Mutual labels:  inotify

go-fsevents

GoDoc Build Status Go License: MIT   Go Report Card

About

Recursive filesystem event watcher using inotify in golang

go-fsevents provides functions necessary for monitoring filesystem events on Linux systems using the inotify interface.

Unlike other inotify packages, go-fsevents provides a recursive watcher, allowing the monitoring of directory trees easily.

UNSTABLE

The package is currently unstable, and as such should not be used in any production environment.

Many changes, additions and breaking refactors will take place between now and the stable 1.0.0 release.

You have been warned.

Features

  • Single directory event monitoring
  • Recursive directory tree event monitoring
  • EventHandle interface to allow for clean and concise handling of events
  • Access to the underlying raw inotify event through the unix package
  • Predefined event translations. No need to fuss with raw inotify flags.
  • Concurrency safe

Examples

See the examples in examples for quick and easy runnable examples of how go-fsevents can be used in your project

handlers.go describes how to use the EventHandlers interface to handle events automatically

loop.go describes how to read events from the watcher.Events channel

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].