This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-10-13
Channels
- # announcements (2)
- # beginners (15)
- # calva (6)
- # cider (3)
- # cljsrn (1)
- # clojure (33)
- # clojure-hk (4)
- # clojure-uk (9)
- # clojurescript (13)
- # cursive (5)
- # datomic (6)
- # figwheel-main (1)
- # fulcro (5)
- # graalvm (12)
- # instaparse (1)
- # kaocha (1)
- # nrepl (6)
- # off-topic (5)
- # pedestal (10)
- # quil (8)
- # reitit (2)
- # ring (5)
- # shadow-cljs (10)
- # sql (1)
- # vim (13)
Hey, all. Anyone found an optimal environment for cljs development on iOS wherein you can install third party libs?
Mostly I want a pocketable Quil environment to match my Pythonista environment. Preferably something that can integrate with git standalone (play.js perhaps?) or with Working Copy.
@zbir For what its worth, we can pre-bundle popular libraries with Replete. For Quil (and graphics in particular), there was some partial work done towards that end (https://github.com/replete-repl/replete-ios/issues/81)
No. The feature wasn’t completed. The WIP is here https://github.com/sherbondy/replete/commits/master
How can I integrate firebase
authentication with clojurescript?
I have found the the version at cljsjs
is a bit old and not maintained.
And anyway, how can I just pull out a js lib and use it in cljs?
Specifically when I have dot function calls like this: firebase.auth().signInWithPopup(provider).then(...).catch(...)
I'm kinda new to cljs, started out using re-frame
, can you elaborate a bit about this combo?
re-frame
is a library. It calls itself a framework, but I disagree. 🙂 cljs-oops
is another library - it makes using JS in CLJS both easy and robust (you will hear about externs - IMO they lack both). shadow-cljs
is a tool that lets you build your CLJS code and makes working with NPM a charm. No need to deal with cljsjs
and its issues at all.