Fork me on GitHub
#re-frame
<
2015-11-17
>
kauko08:11:36

Cool to see a mention of cycle.js, it’s a very powerful looking framework I think. It’s interesting to compare different solutions (like zelkova, re-frame, and cycle.js), although sometimes it’s really difficult to see how different they are, in the end.

ytl20:11:05

Hi just a quick silly ? regarding subscriptions.. do they need to be named uniquely for when deploying (adv compilation) e.g. (register-sub :name ...) in an app.drivers namespace and (register-sub :name ...) in a app.salesmen namespace?

mikethompson20:11:26

They need to be different

mikethompson20:11:33

Use namespaced keywords

mikethompson20:11:24

(register-sub :drivers/name ...

ytl20:11:38

ok, thanks! kind of suspected as much