StackShareStackShare
Follow on
StackShare

Discover and share technology stacks from companies around the world.

Product

  • Stacks
  • Tools
  • Companies
  • Feed

Company

  • About
  • Blog
  • Contact

Legal

  • Privacy Policy
  • Terms of Service

© 2025 StackShare. All rights reserved.

API StatusChangelog
  1. Home
  2. Companies
  3. LottieFiles
LottieFiles logo

LottieFiles

Verified

LottieFiles is a platform for testing, collaborating and discovering Lottie animations. Home to the largest community of animators, designers and developers, it is the place to share, learn and discover all things Lottie.

lottiefiles.com
0
Tools
1
Decisions
2
Followers

Tech Stack

No tools found in this company's stack yet.

Team Members

Jawish Hameed
Jawish HameedLead Engineer
musaid
musaid
thoaif
thoaif
Ali Haris
Ali HarisCEO
Javier Ocañas
Javier Ocañas
UltimateGoDLikE
UltimateGoDLikE
karamalie
karamalie
MuazZim Msh
MuazZim Msh
Abel Khoo
Abel Khoo
Ahmed Ali
Ahmed Ali
Riyazi Mohamed
Riyazi Mohamed
Abdelrahman Ashraf
Abdelrahman Ashraf

Engineering Blog

Stack Decisions

Jawish Hameed
Jawish Hameed

Mar 15, 2022

Heya!

For a PoC, React alone with the built-in useState/useReducer/Context API state management goes a long way. You could use GraphQL just for data fetching then.

Alternatively, you could opt to combine all state management and data fetching within the GraphQL layer with local resolvers, allowing you to treat local state as yet another GraphQL operation. The latter is especially handy if you need to add/enrich further data from local state into server side GraphQL data. Apollo and Urql GraphQL libraries both have local state management options built-in or via plugin packages.

Both approaches should be easily scalable within the context of your use case.

React Context API has issues with causing re-renders on all paths in the tree and requires using memoization for optimizing that. Depending on how frequently or how much the data changes, you could look at Jotai or Zustand or similar that manages the state outside of React and provides powerful features to last beyond a PoC.

Hope that's helpful :)

11.5k views11.5k
Comments