twitch

Version 0.1.7.2 revision 0 uploaded by AndreasSchacker.

Package meta

Synopsis
A high level file watcher DSL
Description

Twitch is a monadic DSL and library for file watching. It conveniently utilizes do notation in the style of Shake and clay to expose the functionality of the fsnotify cross-platform file system watcher.

Here is an example that converts Markdown files to HTML and reloads Safari whenever the input files change.

import Twitch
import System.Process ( system )

main = defaultMain $ do
"*.md"   |> \filePath -> system $ "pandoc -t html " ++ filePath
"*.html" |> \_ -> system $ "osascript refreshSafari.AppleScript"
Author
Jonathan Fischoff, Andreas Schacker
Bug reports
n/a
Category
System
Copyright
(c) Jonathan Fischoff 2015
Homepage
https://github.com/jfischoff/twitch
Maintainer
jonathangfischoff@gmail.com
Package URL
n/a
Stability
n/a

Components