This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-04-16
Channels
- # announcements (2)
- # asami (5)
- # babashka (52)
- # beginners (42)
- # biff (3)
- # cljdoc (4)
- # cljsrn (2)
- # clojure (30)
- # clojure-austin (35)
- # clojure-dev (3)
- # clojure-france (11)
- # clojurescript (36)
- # conjure (6)
- # cursive (5)
- # fulcro (33)
- # graalvm (41)
- # lsp (54)
- # malli (1)
- # music (2)
- # off-topic (7)
- # overtone (1)
- # pedestal (5)
- # polylith (2)
- # remote-jobs (1)
- # sci (28)
- # shadow-cljs (38)
- # vim (15)
- # web-security (1)
- # xtdb (8)
🦊 I'm pleased to announce Sitefox v0.0.4
is out. \o/ Sitefox is a backend framework for ClojureScript on Node.
This release has a big new feature: email & password based authentication.
You can add email based auth, including reset password, email verification, etc. to your app with 3 lines of code:
(auth/setup-auth app)
(auth/setup-email-based-auth app template "main")
(auth/setup-reset-password app template "main")
The other big change is documentation. You can find the detailed codox docs here:
https://chr15m.github.io/sitefox/
Finally, I also added some inline tests to the codebase for critical functions like the crypto used for auth.
Here is the release tweet for those inclined: https://twitter.com/mccrmx/status/1515227749094354944Clojure Sound is a library for transforming digital media and communicating with MIDI devices. https://github.com/uncomplicate/clojure-sound I haven't written documentation for each function yet, but the whole https://docs.oracle.com/javase/tutorial/sound/TOC.html is covered as https://github.com/uncomplicate/clojure-sound/tree/master/test/clojure/uncomplicate/clojure_sound, which is even more useful because it shows how each function works in context of real use cases.

