This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-09-13
Channels
- # aws-lambda (21)
- # beginners (8)
- # boot (67)
- # braveandtrue (2)
- # cider (12)
- # cljs-dev (38)
- # cljsjs (87)
- # cljsrn (11)
- # clojure (307)
- # clojure-austin (29)
- # clojure-finland (1)
- # clojure-italy (9)
- # clojure-russia (19)
- # clojure-spec (71)
- # clojure-uk (33)
- # clojurescript (109)
- # clojutre (1)
- # core-async (2)
- # cursive (24)
- # datomic (11)
- # devops (5)
- # ethereum (5)
- # figwheel (2)
- # hoplon (25)
- # ipfs (1)
- # jobs (1)
- # luminus (17)
- # off-topic (2)
- # om (38)
- # om-next (3)
- # onyx (166)
- # other-lisps (1)
- # proton (5)
- # re-frame (15)
- # reagent (45)
- # ring (2)
- # spacemacs (6)
- # specter (12)
- # untangled (58)
- # yada (23)
@artemyarulin Thank you, I had to add :nrepl-port to :profiles { :dev { :figwheel {:nrepl-port 7888}}}. After that I was able to cider-connect as you said. Just leaving this solution just in case
Hey y’all. 🙂 Have any of you gotten this before in boot-react-native? I’m literally just trying to run the template example app and this red screen is screaming at me lmao.
TransformError: /Users/…/index.ios.js: /Users/…package.json: Error while parsing JSON - Unexpected end of JSON input
Looked at my package.json file but it looks fine. Not sure what’s up.basically, om.next at some point calls (om.next/full-query ...) which in turn calls (om.next/get-indexer ...) and that's where the exception and crash happen
OMG I think I found it... basically don't render your componets in (map (fn [c] ...) [..]) aka LAZY sequences... always wrap the (map ....) call in (doall ) - if the component that you're rendering in a lazy sequence implements Query, bad things will happen
@keatondunsford extra comma in the end of a list?
@keatondunsford put your package.json into an online json parser to verify it’s okay
@raspasov To avoid wrapping the map in another doall
, I’d also recommend using mapv, which is like map but eager and returns a vector