This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-04-02
Channels
- # beginners (29)
- # cider (41)
- # clara (1)
- # cljs-dev (17)
- # cljsrn (1)
- # clojure (158)
- # clojure-dev (2)
- # clojure-dusseldorf (2)
- # clojure-italy (8)
- # clojure-mexico (1)
- # clojure-russia (2)
- # clojure-spec (43)
- # clojure-uk (1)
- # clojurescript (44)
- # community-development (98)
- # cursive (9)
- # data-science (8)
- # datascript (4)
- # datomic (30)
- # emacs (6)
- # fulcro (11)
- # graphql (6)
- # jobs (1)
- # jobs-discuss (27)
- # lein-figwheel (5)
- # luminus (13)
- # lumo (4)
- # off-topic (28)
- # onyx (9)
- # parinfer (12)
- # perun (2)
- # portkey (5)
- # re-frame (48)
- # ring (2)
- # shadow-cljs (52)
- # spacemacs (29)
- # tools-deps (15)
- # unrepl (9)
- # vim (7)
- # yada (3)
Is anyone using Fulcro with https://github.com/aws/aws-amplify?
First time I head about amplify. They say it works well with react & the fulcro template has a shadow-cljs option, to get you started. Good chance it will work.
@tony.kay For a quick little bug+fix, do you have a preference for a Github issue, a Github PR, or just a quick note on here?
@grant depends on the fix. A message here first might be good…but if you already know what it is and have a fix, then a clear PR with a single commit and no whitespace changes is fine.
Fulcro 2.5.0-alpha2 on clojars. Experimenting with moving to Clojure 1.9 finally 🙂 This version has the bug fixed DOM and localized DOM out of alpha namespace. Should be a drop-in replacement, but i18n requires porting if you use that (small amount of new code)
@tony.kay In your lein template, for the index.html
s, {{sanitized}}
probably needs to be {{name}}
or else lein new fulcro domain.proj
will not load properly because it tries to call <script>domain/proj.client.init();</script>
instead of <script>domain.proj.client.init();</script>
.
Hi, I’mhaving a weird issue. I just added datomic to my fulcro project. ANd I get this error about wrap-cljs-repl when I try to run a server repl
Caused by: java.lang.RuntimeException: Unable to resolve var: cemerick.piggieback/wrap-cljs-repl in this context
Has anyone seen this?