In previous blog posts I mention that Bidi and Silk are essentially equivalent. I don’t believe this anymore. I now prefer Silk and I can show you why with a little example. First, let’s define some routes:
(def silk-routes (domkm.silk/routes [[:home-page [[]]] [:about [["about"]]]])) (def bidi-routes ["/" {"" :home-page "about" :about-page}])
When it comes to defining routes, I find both a bit cryptic. Bidi feels a bit easier to read but I found it was harder to write in some scenarios.
Leave a Reply