fay-uri alternatives and similar packages
Based on the "Fay" category.
Alternatively, view fay-uri alternatives based on common mentions on social networks and blogs.
-
snaplet-fay
Fay integration for Snap that provides automatic (re)compilation during development -
fay-builder
Put Fay configuration in your projects .cabal file and compile on program startup or when building with Cabal
Static code analysis for 29 languages.
* 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 fay-uri or a related project?
README
fay-uri
This is a thin persistent FFI layer for using jsUri with Fay.
See the source code for comments on the implementation, names are kept similar to what jsUri uses. Hopefully it's easy to understand even if you haven't used jsUri before. The argument order is changed to be more haskelly, such as always putting the Uri as the last argument and not combining setting and removal functions. Any other changes are documented in the source.
Since jsUri is a small library fay-uri also serves as a good example on how to write FFI bindings in Fay.
Usage
To use this with fay, cabal install the package which will put the source files in fay ~/.cabal/share/fay-uri-0.1.0.0/src. You can then compile with fay using
in fay >= 0.12:
fay --package fay-uri MyFile.hs
in fay < 0.12:
fay --include ~/.cabal/share/fay-uri-0.1.0.0/src MyFile.hs
Example
import Language.Fay.Prelude
import Language.Fay.Uri
main :: Fay ()
main = putStrLn . toString . removePath . withProtocol "https" . newUri =<< currentUri