Fork me on GitHub
#clojurescript
<
2021-12-01
>
Noah Bogart20:12:33

any recommendation on cljc time libraries that have reader tags implemented so i can send datetime objects back and forth between client and server in edn?

winsome20:12:20

I don't know if it uses reader tags per se, but https://github.com/juxt/tick is a fully cljc time lib backed by Juxt.

👍 1
Takis_20:12:57

Hello, i made a Clojure(Script) library called cMQL, for quering MongoDB. It feels almost as if Clojure was the query language of MongoDB, and reduces code up to 3x. cMQL example (playground has 150+ examples) :

(q (= :bedrooms 1)
   (= :country.code "GR")
   (group {:_id :stars}
          {:average-price (avg :price)})
   (sort :stars)
   (limit 3))
Docs : https://cmql.org/ Playground : https://cmql.org/play/ Github : https://github.com/tkaryadis/cmql-core Slack : https://app.slack.com/client/T03RZGPFR/C02P0821VJA Discord : https://discord.gg/zWDzp4B7Bf

👍 1