Fork me on GitHub
#cljsrn
<
2021-02-24
>
Oliver George02:02:52

Anyone have experience with Ionic Framework? I'm trying to assess strengths and weaknesses.

Oliver George03:02:19

New question. I'm doing a quick Expo prototype. No CLJS just now. I'd love some quick and easy global state... if this was CLJS land I'd use reagent... does JS land have a good simple equivalent?

raspasov04:02:32

I’ve never done a React project with JS, but you’d probably want something like ImmutableJS if you plan to stick with the global state approach in React+JS beyond a toy example

Kai05:02:07

Haven’t used it myself yet, but I’ve heard good things about https://github.com/pmndrs/zustand

mark12:02:29

you’ve probably already seen this, but you might also consider react’s context api https://reactjs.org/docs/context.html

bherrmann15:02:10

I thought redux is the way to manage react state https://react-redux.js.org/

mark15:02:47

redux is a way, but react’s own context api + hooks can replace most (all?) of it

Oliver George03:02:31

(I see recoiljs which seems promising)

danielneal12:02:48

yeah recoiljs looks really good

danielneal12:02:16

if you just want really basic stuff you can get by with putting the state in a global context

danielneal12:02:33

but it's very inefficient