This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-02-06
Channels
- # adventofcode (1)
- # aleph (9)
- # announcements (22)
- # beginners (59)
- # boot (8)
- # calva (1)
- # cljdoc (7)
- # cljs-dev (10)
- # cljsrn (9)
- # clojars (10)
- # clojure (23)
- # clojure-dev (6)
- # clojure-europe (3)
- # clojure-italy (26)
- # clojure-nl (3)
- # clojure-seattle (1)
- # clojure-spec (46)
- # clojure-uk (85)
- # clojurescript (97)
- # core-async (13)
- # cursive (3)
- # data-science (10)
- # datomic (156)
- # duct (34)
- # emacs (37)
- # figwheel (3)
- # figwheel-main (9)
- # fulcro (59)
- # hyperfiddle (4)
- # immutant (1)
- # jackdaw (3)
- # jobs (1)
- # off-topic (112)
- # parinfer (1)
- # qlkit (2)
- # re-frame (1)
- # reagent (35)
- # ring-swagger (2)
- # shadow-cljs (104)
- # spacemacs (9)
- # speculative (12)
- # tools-deps (30)
- # yada (10)
https://github.com/RickMoynihan/redef-methods Not officially released yet โ but open to feedback
Hi everyone. Just want to announce a new release of Oz, your Simple (TM) Clojure & ClojureScript data visualization library, built on Vega-Lite & Vega. This release (version 1.5.5), is a minor release featuring: โข A bug report and fix for those of you wanting to use Oz from the Clojure CLI, thanks to @viesti :man-bowing: (related to differences in class path resolution of resources) โข Some documentation improvements, particularly as relates to Jupyter integration Thanks for your attention, and please let me know if you have any questions or feature requests!
Today I'm formally announcing a library I've been working on: hx
. It is a simple, easy to use library for React development in ClojureScript.
hx
gives you an extremely thin-but-familiar interface to React. It includes an ergonomic Hiccup-like syntax (very similar to Reagent) and a couple of helper macros for defining React components.
With the release of React Hooks, I see a library like hx
as being very desirable for many projects so that we can continue to leverage modern React features like Hooks, Suspense, Concurrent mode, and improvements to SSR that are coming in the next year.
Feedback, questions, issues, enhancements and help are all appreciated! Reach out to me here or via Github.
https://github.com/Lokeh/hx
@U1GCL8V2B will probably want you to support preact. ๐
I think preact has a React compat API? if so, it would just need to be provided via the "react"
moniker
Yeah. No change needed with preact-compat
. We can plonk that into the webview as though react has been loaded from a cdn :D
If there is a change needed we can pr a compatability fix upstream. Developit is a pretty awesome guy :D
awesome. yeah, IMO what makes using hx
tenable is the new Hooks API. if/when Preact gets Hooks support, I definitely see hx
+ Preact working quite well
You can follow the implementation of hooks here btw: https://github.com/developit/preact/issues/1247
definitely very interested in a thin layer to react, not had a chance to try hx out yet but will be first on my list
it would be like using any other React component, either with :>
or the other interop options