This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-11-10
Channels
- # aws (45)
- # bangalore-clj (16)
- # beginners (109)
- # boot (137)
- # cider (7)
- # cljs-dev (54)
- # cljsrn (22)
- # clojure (77)
- # clojure-conj (1)
- # clojure-greece (2)
- # clojure-nl (5)
- # clojure-russia (36)
- # clojure-spec (15)
- # clojure-uk (54)
- # clojurescript (118)
- # cursive (7)
- # datomic (25)
- # emacs (33)
- # hoplon (276)
- # klipse (38)
- # lein-figwheel (1)
- # leiningen (9)
- # melbourne (1)
- # off-topic (18)
- # om (98)
- # onyx (6)
- # pedestal (1)
- # perun (24)
- # re-frame (46)
- # reagent (6)
- # ring-swagger (3)
- # spacemacs (67)
- # specter (15)
- # untangled (33)
- # vim (6)
@viebel how would I get (doc map)
to work in klipse? I have tried (clojure.repl/doc map)
and (cljs.repl/doc map)
but I get "Type Error - undefined" error messages.
doc
is not yet supported in klipse
but you can workaround it with (:doc (meta #‘map))
See an example here: http://app.klipse.tech/?cljs_in=(%3Adoc%20(meta%20%23%27map))%0A&eval_only=1
Thanks. Hmm, that not something I would like to put in front of Clojure beginners though. For ClojureBridge content I'll just add a link the online docs at http://clojuredoc.org for specific functions, rather than in klipse for now. Its probably better they get used to looking at http://clojuredocs.org website as it has other examples too...
Your work looks wonderful!
I gave it a try and basically, one can do a funny thing - run cljs_live
inside klipse
(sorry for the long url)
yeap! not compiled
that would be great
but not for the moment
usually, I take code from github
The problem is that with the deps of the libs
For the moment, you have to add them manually into the external-libs parameter
Theoretically, I could read the project.clj
and resolve deps
but I would need the repo of each dep - and it is not part of the project.clj
but maybe one could check in clojars what is the repo of the dep and solve all the deps
makes sense?
Hmm. It would be nice if there was just a mirror of the files in the jar, then versioning would be aligned
We just need the git commit of release tag!
I think you opened a lot of interesting doors with cljs-live
a mirror is also useful because there’s so much work that can be cached. like compilation. it’s really slow making the browser compile everything from source
what do u mean by a mirror?
at first I just meant another server that would host a cljs-subset of Clojars, where the jars are expanded (since a jar is just a bunch of files compressed together), to use like you are using git.
but then in addition to just mirroring jarfiles as raw source directories, there is lots to do to make it convenient for grabbing clojurescript-compiler-friendly bundles of dependencies.