This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-02-05
Channels
- # aatree (2)
- # admin-announcements (15)
- # announcements (2)
- # aws (8)
- # beginners (160)
- # boot (290)
- # braid-chat (28)
- # cider (8)
- # clara (1)
- # cljsrn (3)
- # clojure (154)
- # clojure-czech (7)
- # clojure-russia (162)
- # clojurebridge (2)
- # clojurescript (128)
- # cursive (29)
- # datomic (30)
- # emacs (7)
- # events (1)
- # hoplon (5)
- # jobs (1)
- # ldnclj (7)
- # leiningen (3)
- # off-topic (11)
- # om (82)
- # onyx (68)
- # overtone (1)
- # parinfer (57)
- # portland-or (1)
- # proton (18)
- # re-frame (8)
- # reagent (32)
- # ring-swagger (3)
- # yada (5)
@adamfrey: I haven't had any problems in the past using RN modules. What I usually do: (1) Add dependency to package.json in the app directory - i.e. the same file that has the dependency on react native. (2) npm install
. Then (3) in cljs file I do (aset js/global JS-NAME (js/require LIB-NAME))
. Another way to diagnose is to check your
and ensure that the required files are included.
@mjmeintjes: I found out this morning while playing around that I was only seeing the Requiring unknown module
error after a boot reload, but the (js/require “react-native-video)
worked fine the first time. So I ended up with
(defonce react-video (js/require "react-native-video"))
and it works. I don’t have a theory on why reload would be breaking the requires I added.@adamfrey: Thanks for the info.