This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-09-04
Channels
- # architecture (10)
- # bangalore-clj (2)
- # beginners (2)
- # clara (3)
- # cljs-dev (39)
- # clojars (2)
- # clojure (21)
- # clojure-art (2)
- # clojure-austin (6)
- # clojure-berlin (5)
- # clojure-gamedev (4)
- # clojure-russia (1)
- # clojure-spec (15)
- # clojure-uk (4)
- # clojurescript (4)
- # cursive (3)
- # datomic (1)
- # events (5)
- # flambo (6)
- # hoplon (55)
- # jobs (20)
- # lein-figwheel (2)
- # om (8)
- # onyx (1)
- # pedestal (4)
- # perun (3)
- # protorepl (2)
- # re-frame (8)
- # reagent (48)
- # slack-help (1)
- # specter (5)
- # yada (46)
@stbgz: Bootstrapped ClojureScript delegates dependency loading to you, expecting you to provide a binding for cljs.js/*load-fn*
that does whatever is appropriate for your runtime environment. I think that—if possible—supporting the concept of classpath has value in that it eases interoperating with the existing ClojureScript dependency ecosystem.
What is the cljs equivalent of "let pm = http://window.pm = new MonsterObject({foo: bar})"
(def pm (js/MonsterObject. #js {:foo bar}))
(set! (. js/window -pm) pm)
@anmonteiro Thanks a lot.