Live data from Hacker News

Reagent: Minimalistic React for ClojureScript

reagent-project.github.io

1–10 of 12 posts

Re: Reagent: Minimalistic React for ClojureScript

#4

Not sure why this is posted. But I'm working on a straight port of re-frame in javascript, it's an abstraction on top of react-redux, a true 1:1 port. For me re-frame's api is the holy grail (for now) of UI programming.

I'd be interested in checking it out once finished. re-frame's abstractions have been great to work with.

Re: Reagent: Minimalistic React for ClojureScript

#5
When talking about reagent, we should also mention re-frame: A Reagent Framework For Writing SPAs, in Clojurescript.

https://github.com/Day8/re-frame

It provides a fantastic framework for implementing browser based UIs with a very clean approach, inspired by Elm architecture, and related to redux.

Re: Reagent: Minimalistic React for ClojureScript

#6

Not sure why this is posted. But I'm working on a straight port of re-frame in javascript, it's an abstraction on top of react-redux, a true 1:1 port. For me re-frame's api is the holy grail (for now) of UI programming.

As a Redux maintainer, I'd be curious to see what you're putting together.

Re: Reagent: Minimalistic React for ClojureScript

#7

Not sure why this is posted. But I'm working on a straight port of re-frame in javascript, it's an abstraction on top of react-redux, a true 1:1 port. For me re-frame's api is the holy grail (for now) of UI programming.

Do you have a public repo? I'm using re-frame a lot happily, but sometimes there's only JS that can be used. I'd be interested to see your port.

Re: Reagent: Minimalistic React for ClojureScript

#8
post #5

When talking about reagent, we should also mention re-frame: A Reagent Framework For Writing SPAs, in Clojurescript. https://github.com/Day8/re-frame It provides a fantastic framework for implementing browser based UIs with a very clean approach, inspired by Elm architecture, and related to redux.

I tried it only once following some tutorial on how to make a snake game in re-frame, did some code changes and neon snake was born. You can try it here https://smnplk.github.io/neon-snake/resources/public/live/in... ;)

I'm certainly using re-frame on my next spa project.

Re: Reagent: Minimalistic React for ClojureScript

#9

Not sure why this is posted. But I'm working on a straight port of re-frame in javascript, it's an abstraction on top of react-redux, a true 1:1 port. For me re-frame's api is the holy grail (for now) of UI programming.

I'd be very interested on that port. I really miss re-frame when I'm working with Js.

Re: Reagent: Minimalistic React for ClojureScript

#10
Reagent is the best ClojureScript implementation of React out there. The nice thing about it is that you can do very interesting things with Reagent without ever writing a component as a React class. There is, of course, a way to do that simply with create-class. Another great thing about Reagent is how simple it is to convert a pure Javascript React component with adapt-react-class. I also really like Reagent atoms. Reagent atom cursors alone are worth it to include this library in your build! Reagent is the killer app for ClojureScript, I use it in just about every one of my ClojureScript projects.
Post reply on HN