This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-01-04
Channels
- # announcements (5)
- # beginners (205)
- # calva (1)
- # cider (48)
- # cljs-dev (9)
- # clojure (123)
- # clojure-berlin (1)
- # clojure-europe (2)
- # clojure-italy (5)
- # clojure-nl (6)
- # clojure-russia (7)
- # clojure-serbia (1)
- # clojure-spec (8)
- # clojure-uk (33)
- # clojurescript (134)
- # cursive (5)
- # datomic (31)
- # emacs (5)
- # figwheel-main (61)
- # fulcro (10)
- # hyperfiddle (23)
- # jobs-discuss (24)
- # klipse (1)
- # lein-figwheel (3)
- # midje (5)
- # nyc (1)
- # parinfer (2)
- # pathom (14)
- # pedestal (12)
- # re-frame (46)
- # shadow-cljs (24)
- # spacemacs (1)
- # tools-deps (37)
- # vim (4)
- # yada (22)
@tony.kay Oh no! http://book.fulcrologic.com is welcoming me to nginx!
is dev guide's source on github ?
The book is also available here https://github.com/fulcrologic/fulcro/blob/develop/DevelopersGuide.adoc (albeit without live code examples)
I have run into the need to use websockets in a fulcro project, I had done it before in a different project and this time it's running into a bunch more resistance. Figured out part of that has to do with the csrf security issue recently discovered in sente. Now after including sente 0.14.0-RC1
in my :dependencies
when trying to run my server I get an error that I think is not right:
INFO [fulcro.websockets:101] : Starting Sente websockets support
ERROR [fulcro.util:133] : Failed to load functions from taoensso.sente. Fulcro does not have hard dependencies on that library, and you must explicitly add the dependency to your project.
Execution error (ExceptionInfo) at fulcro.util$build_invoke$fn__20011/doInvoke (util.cljc:174).
Dynamically loaded function not found. You forgot to add a dependency to your classpath.
I don't have that issue with older versions of sente, but then my front-end will give the following error, which I guess indicates an incompatible api:
Uncaught #error {:message "Invalid event", :data {:given "~:chsk/handshake", :errors {:wrong-type
{…}
[:expected :vector]
[:actual {:type #object[String], :value "~:chsk/handshake"}]
Fulcro version is 2.7.0