Fork me on GitHub
#fulcro
<
2019-06-28
>
tony.kay06:06:47

The new dev guide for Fulcro 3 just got a huge update with respect to mutations: https://github.com/fulcrologic/fulcro-developer-guide/blob/master/DevelopersGuide.adoc#MutationsChapter

🎉 36
tony.kay06:06:06

Still a ways to go, but most of the critical content is now up-to-date.

Robin Jakobsson12:06:17

Hello! My local installation of Fulcro Inspect recently and suddenly stopped connecting to my app. Has anyone experienced something similiar? I'm getting No reader function for tag fulcro/tempid. in the console for Fulcro Inspect.

Robin Jakobsson12:06:47

A reinstall fixed the issue.

PB13:06:03

Hey all. Are there any up to date docs on getting started with fulcro inside of emacs? I've tried following the cider resources but it does not seem to correctly work with cidr

PB13:06:35

shadow.user> (shadow/nrepl-select :main)
[:no-worker :main]
shadow.user> (js/alert "Hi")
Syntax error compiling at (*cider-repl localhost*:53:14).
No such namespace: js

neupsh13:06:31

@petr you may not have the app up in your browser

neupsh13:06:37

[:no-worker :main] means it cannot find it

PB14:06:53

@neupsh thanks for the response. I have loaded the following windows: http://localhost:9630/builds http://localhost:8023/workspaces/ http://localhost:8022/ and they alla ppear to load

neupsh14:06:26

@petr the one one port 9630 is shadowcljs , 8023 is workspaces build and 8022 is test build

neupsh14:06:54

say if you want to connect to the one on 8023, you can do (shadow/nrepl-select :workspaces)

PB14:06:25

@neupsh I think I got it to connect to my app that started on :3000. HOwever:

shadow.user> (shadow/nrepl-select :main)
To quit, type: :cljs/quit
[:selected :main]
cljs.user> (js/alert "hiii")
No application has connected to the REPL server. Make sure your JS environment has loaded your compiled ClojureScript code.

PB14:06:08

Do you run the server from cider as well?

neupsh14:06:18

yeah, try refreshing the browser and look at the browser's dev tools console to see if there are any errors

PB14:06:38

Oh, the refresh appears to have fixed that issue

neupsh14:06:42

@petr I dont use emacs and cider (i am just occasional tinkerer who loves clojure(script) 🙂 )

PB14:06:42

Thank you for the help