fsnotify-conduit alternatives and similar packages
Based on the "Conduit" category.
Alternatively, view fsnotify-conduit alternatives based on common mentions on social networks and blogs.
-
pool-conduit
Persistence interface for Haskell allowing multiple storage methods. -
http-conduit
An HTTP client engine, intended as a base layer for more user-friendly packages. -
conduit-combinators
Type classes for mapping, folding, and traversing monomorphic containers -
twitter-conduit
Twitter API package for Haskell, including enumerator interfaces and Streaming API supports. -
csv-conduit
Flexible, fast and constant-space CSV library for Haskell using conduits -
hreq-conduit
A type dependent highlevel HTTP client library inspired by servant-client. -
simple-conduit
A simple streaming I/O library based on monadic folds -
binary-conduit
binary serialization interface for conduit -
conduit-audio
Use conduit to process/manipulate/convert audio -
crypto-conduit
Conduit interface for cryptographic operations (from crypto-api). -
http-conduit-browser
Browser interface to the http-conduit package -
imagesize-conduit
Conduit sink to efficiently determine image dimensions -
rss-conduit
Streaming parser/renderer for the RSS 2.0 standard. -
udp-conduit
[DONE] Simple fire-and-forget style conduit parts (sources/sinks) for UDP traffic -
hw-conduit-merges
Additional merge / join combinators for Conduit -
cryptohash-conduit
Simple conduit function for cryptohash -
jsonrpc-conduit
Library for building JSON-RPC 2.0 servers. -
conduit-concurrent-map
Concurrent, order-preserving mapping Conduit for Haskell -
conduit-tokenize-attoparsec
Conduits for tokenizing streams. -
conduit-network-stream
A base layer for network protocols with Conduits -
ascii85-conduit
Conduit for encoding ByteString into Ascii85
Build time-series-based applications quickly and at scale.
* 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 fsnotify-conduit or a related project?
README
fsnotify-conduit
Get filesystem notifications as a stream of events, using the conduit package to handle the stream. This uses the fsnotify package, which uses OS-specific file notification APIs for efficiency. Simple usage example, a program which will print all events for the given directory tree:
#!/usr/bin/env stack
{- stack script
--resolver lts-13.6
--install-ghc
--package fsnotify-conduit
--package conduit
-}
import Conduit
import Data.Conduit.FSNotify
import System.Environment (getArgs)
main :: IO ()
main = do
args <- getArgs
dir <-
case args of
[dir] -> return dir
_ -> error $ "Expected one argument (directory to watch)"
runConduitRes
$ sourceFileChanges (setRelative False $ mkFileChangeSettings dir)
.| mapM_C (liftIO . print)