Skip to content

Simple tool that can forward file system events to other machine, such as virtual machines with shared folders

Notifications You must be signed in to change notification settings

CtrlC-Root/notify-forwarder

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

File system notification forwarder

A simple tool for forwarding file system notifications from one host to another, possibly remapping the path in the process. Useful when running a reloading build system on one machine and editing files on another, or over shared folders to a VM.

Supports Linux/inotify and Mac OS X/fsevents on the host side, and Linux, Mac OS X, and BSD on the client side.

Downloading

Either use one of the pre-built binary releases for your operating system:

Or download the source and compile it yourself:

$ git clone git@github.com:mhallin/notify-forwarder.git
$ make
# Now you have the binary at _build/notify-forwarder

Running

To map the current directory to "/home/user/project" on a remote machine, run the following on the host side:

$ notify-forwarder watch -c <remote-ip> . /home/user/project
# This maps the current directory "." to "/home/user/project". Add more pairs of paths
# to watch more folders with different mappings.

And on the client side:

$ notify-forwarder receive

The "host side" here being the file system that will send events, i.e. where you run the text editor. The "client side" is where the auto reloading build system runs.

About

Simple tool that can forward file system events to other machine, such as virtual machines with shared folders

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 94.5%
  • Makefile 4.7%
  • C 0.8%