This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-05-22
Channels
- # architecture (1)
- # aws (3)
- # beginners (78)
- # boot (33)
- # cider (49)
- # cljs-dev (3)
- # clojure (82)
- # clojure-berlin (2)
- # clojure-dusseldorf (14)
- # clojure-gamedev (75)
- # clojure-italy (15)
- # clojure-nl (2)
- # clojure-poland (9)
- # clojure-russia (1)
- # clojure-spec (11)
- # clojure-uk (91)
- # clojurescript (17)
- # core-async (2)
- # cursive (1)
- # data-science (3)
- # datascript (34)
- # datomic (13)
- # docs (2)
- # duct (32)
- # emacs (8)
- # fulcro (95)
- # instaparse (17)
- # jobs (2)
- # jobs-discuss (1)
- # jobs-rus (4)
- # leiningen (1)
- # luminus (1)
- # lumo (4)
- # mount (1)
- # nrepl (1)
- # off-topic (98)
- # onyx (13)
- # portkey (12)
- # re-frame (10)
- # reagent (11)
- # remote-jobs (4)
- # rum (3)
- # shadow-cljs (34)
- # specter (7)
- # sql (1)
- # tools-deps (8)
@thheller what was the data-grid component you mentioned using the other day again?
I remember we talked about a React data table component
thanks
folks who use cljs with graphql, what's your preferred way of constructing queries? plain strings? a library like venia? or an integrated solution like re-graph?
any recommended guides for clojurescript development of chrome plugins?
I'm currently adding support for this to shadow-cljs. see https://github.com/thheller/shadow-cljs/issues/279
That's awesome.
https://github.com/binaryage/chromex has an example project https://github.com/binaryage/chromex-sample with some docs in the readme
@U1CUUKHDL there's really not much to it
build a js bundle and load that as the extension
the rest is documented in the Chrome docs
you may run into an issue with character encodings; Chrome is strict about correct UTF8 input when loading extension js files
you'll need to set :closure-output-charset to "US-ASCII"