Zwaluw alternatives and similar packages
Based on the "Text" category.
Alternatively, view Zwaluw alternatives based on common mentions on social networks and blogs.
-
skylighting
A Haskell syntax highlighting library with tokenizers derived from KDE syntax highlighting descriptions -
double-conversion
A fast Haskell library for converting between double precision floating point numbers and text strings. It is implemented as a binding to the V8-derived C++ double-conversion library.
SaaSHub - Software Alternatives and Reviews
* 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 Zwaluw or a related project?
README
Zwaluw is a Haskell combinator library for specifying URL routers. The routers are bidirectional: they parse a URL into a sitemap and serialise sitemap values back to URLs. Because you specify such a router only once, the resulting parser and serialiser are each other's inverse by construction.
Zwaluw derives pure routers for all your constructors. You can either use pure Template Haskell to derive these routers (see ExampleTH.hs), or use the regular package (see ExampleRegular.hs). With those constructor routers, you can build your own router, combining them and producing/consuming URLs. Both files contain an example of this.