Fork me on GitHub
#re-frame
<
2021-12-04
>
roelof20:12:29

Can I use re-frame together with for example luminus so I can have multiple pages with on some pages some react stuff ?

p-himik20:12:47

You can, but the law of diminishing returns applies. The more stuff you use around roughly the same idea, the harder it will be to manage, the larger your bundle size will be.

roelof20:12:56

hmm, then I have to re-think my idea of making a website for a volunteer orginisation to keep tracks of the subscriptions, members and what toys are borrowed by who

p-himik20:12:37

Ah, I should've mentioned - I know 0 about Luminus. I was assuming that it's a full-stack framework that also provides some UI affordances. If it does not and it's only a backend framework, or if you won't use that UI part of Luminus, then using re-frame should be just fine.

roelof20:12:34

oke, I used Luminus as example. I could also be using a lot of libraries myself

roelof20:12:24

just learning re-frame and wonder if I make a good choice to make that site in the future with clojure and re-frame

p-himik21:12:18

I'd say go for it.

roelof21:12:02

Of course as clojure developer you said go for it 🙂

roelof21:12:25

but I think still a lot to learn before I can make that site

p-himik21:12:56

If there are no constraints whatsoever, it seems to be a good project where you will be able to learn a lot. If there are time constraints, of course go with the option you already know the best.

roelof21:12:57

no time constrains. For me this is hobby so I have a lot of time

💪 1
emccue22:12:25

can you describe more of what you want to do with the website?

roelof08:12:04

I will try. On the organisation where im volunteer. People can borrow for 4 weeks toys if they have a subscription. So on the website I would make some pages where all the toys are displayed on categories like a web catalog so we can keep track of whcih toys are borrowed by which person. Also we want to know if theta person has paid for the subscription. Maybe later I will add code so we also can keep track what amount of fee someone has to pay if the person is too late with brining back the toys and if the person has paid the fee

roelof08:12:01

We have now a system on a computer to keep track of the borrowing but that one cannot talk to our web catalog

ingesol13:12:48

Luminus provides you with the full stack, including an optional re-frame frontend. So you definitely can do what you suggested.

roelof13:12:30

glad to hear