How we implemented SWR in a project and why we loved it
Kamil Polok
Jun 09, 2021・6 min read
Table of Content
Why SWR?
What is SWR?
Why we loved SWR
How SWR works
Data mutation
SWR integrations
Why SWR?
Recently, we had the opportunity at SDH to develop a project using React with support from Redux/Toolkit. Thing is, though data was kept and fetched in the store, there was no caching mechanism implemented in the app. And holding dozens of responses in the state is not my idea of a cool idea. Whatever the case, it soon got a little too easy to get lost in all those state slices, despite the use of Toolkit.
What’s more, it had zero influence on the backend at that point. With those iceberg-sized chunks of data drifting about, some requests took an eternity to resolve. And since the UI’s application consisted of long item lists with few CRUD operations, it soon became clear that some form of cache would come in pretty handy just about then. So the choice fell to SWR - a library made by the developers of Vercel (also of Next.js fame).
What is SWR?
Ok, do you like reading definitions? I hope not, because this is going to be one of the shortest you've ever read. ‘SWR is a React Hooks library for remote data fetching’. That's it. Simple? Yes, but I will now show you that SWR is also very powerful. And in case you were wondering, SWR stands for stale-while-revalidate. Which already explains how it works. SWR returns data from cache (stale), sends a fetch request to get updated data (revalidate), then returns new data. Like I said, simple.
Why we loved SWR
It’s easy to recognise how using SWR eliminates problems described at the beginning of this article. Thanks to SWR, we:
- Made the UI work perfectly (after initial data requests) thanks to caching data
- Removed nearly all slices holding API data and accompanying logic
- Simplified the flow of revalidating data after making CRUD operations on data collections
- Sped up the development of new API-dependent features
How did we actually implement this library for such magical results?
How SWR works
After a short while of working with SWR, it proved itself to be rather simple and quite user-friendly. Fancy making an API request using SWR? Have this:

The only catch is the fetcher. It’s just your custom function for fetching data. The application we worked on already had axios set up and running with its entire config (interceptors, headers, base URL, etc.), so we just wrapped our axios instance like this to get our own custom fetcher:

Therefore, the entire hook could look as simple as this (let's skip error handling in this example):

And... that's it! We’ve created a hook for fetching API data using all the SWR goodies. Whenever this hook is fired, it will return previously fetched data first (if present), and only then revalidate data and return new collection afterwards.
SWR out of the box comes with a handful of pre-configured parameters (all are listed here), which make working with it a piece of cake. A favorite option worth mentioning is dedupingInterval.
Typical use-case scenario: fetch data in one component, keep developing this component further, watch children grow out of control, only for a 4th level child to need the data. How you get this data into the child component without much effort whilst avoiding repeated requests is always a challenge. But fear not: simply reuse the SWR hook... The deduping interval will not allow the request to be made again within a specified amount of time (2 seconds by default). Fair enough.
"But if I call the endpoint, and it returns the same data as before, my component will still re-render". It will not: SWR implements deep comparison so re-render will only be triggered when data has actually changed. And the comparison function can, of course, be customized.
Data mutation
But you might argue that GETting data is always easy - what about the mutating part? Surely this is more complicated. Well, not really, mutations don't have to be a nightmare, and I was surprised how easy it is to mutate data using SWR (previously having had some fun with Apollo). Here's a real-life example:

In this example mutate is a function imported from SWR and /users is the key we gave it in useUsers hook (It doesn't have to be the endpoint URL - you can pass the key and URL separately).
Should you wish to cache and update a single entity (object) fetched from a bigger collection, simply mutate it by its key like so:

Looks too simple? It is simple. Try it for yourself and you just may save considerable time writing extensive Redux logic and debugging your API calls.
SWR integrations
As you can see, implementing SWR is simple; with a few nice touches, it doesn’t take much to advance the above examples to higher, more abstract levels. Obviously, SWR is not limited to this and there is a great number of options and integrations available:
graphQL integration
error handling with retry options
auto revalidation
pagination support (also for infinite loading)
data prefetching
and many more (documentation)
We found working with SWR supremely cool and will definitely consider using it for future projects. If you’d like to learn more about this awesome library, visit their official website with documentation, configs and examples here.
Happy coding!

Digital Transformation Strategy for Siemens Finance
Cloud-based platform for Siemens Financial Services in Poland


You may also like...

How to generate PDF from HTML in React / Node.js app
Generating PDFs from HTML can be a challenge, but with the right methods, you can achieve the desired results. Explore different solutions, from using CSS print rules to libraries like html2canvas, jsPDF, and Puppeteer. Understand the pros and cons of each approach to find the best solution for your project. Contact us at hello@start-up.house for more information and assistance. Good luck in your PDF generation endeavors!
Eugene Zolotarenko
May 20, 2021・6 min read

4 reasons to use Chakra UI in your next project
Chakra UI is a simple, modular, and accessible component library for building React apps with speed. With its easy customization, dark mode support, responsive design capabilities, and focus on accessibility, Chakra UI stands out among other UI libraries, making it an excellent choice for React developers.
Mateusz Wójcik
Jan 19, 2021・4 min read
Recently added

Cloud Infrastructure Management
What it takes to run cloud infrastructure that's scalable, secure, and cost-efficient — the core pillars, FinOps, AI-driven ops, and how to pick a partner.
Alexander Stasiak
Jun 12, 2026・8 min read

Cloud Security Compliance
A step-by-step path to SOC2, ISO 27001, GDPR, and HIPAA in the cloud — including the move to compliance-as-code for scaling safely.
Alexander Stasiak
Jun 09, 2026・10 min read

Data Analytics in Solar Energy
Global solar PV capacity passed 1,500 GW in 2025, and with hardware costs at historic lows, the next competitive edge isn't installing more panels — it's squeezing more value out of the ones already in the field. Modern solar plants generate millions of data points daily from SCADA, IoT sensors, weather APIs, and market feeds, but only operators with the right analytics layer convert that data into yield gains, lower O&M costs, and smarter market participation. This guide breaks down how data analytics is reshaping every stage of the solar lifecycle in 2026 — from site selection and design to predictive maintenance, grid integration, and financial modeling — with concrete benchmarks, KPIs, and implementation timelines.
Alexander Stasiak
May 03, 2026・8 min read
Value-Added Services (VAS) Examples
By 2026, most core services — data plans, current accounts, cloud hosting — have become fully commoditized, and the companies winning customer loyalty aren't the ones cutting prices. They're the ones layering smart value-added services (VAS) on top: carbon footprint trackers in banking apps, smart-home bundles from ISPs, AI copilots inside SaaS platforms, and Amazon Prime-style subscriptions that turn one-time buyers into long-term subscribers. This guide breaks down concrete VAS examples across telecom, banking, retail, and SaaS, explains why operators offering VAS see up to 30% ARPU uplift, and gives you a practical 5-step framework to identify which value-added services will actually move the needle for your product.
Alexander Stasiak
May 01, 2026・11 min read

AI Agents Use Cases 2026
AI agents are no longer a research demo — they're now reading customer history in real CRMs, monitoring thousands of transactions per second for fraud, drafting pull requests against production codebases, and rebalancing logistics fleets without human input. The shift from reactive chatbots to autonomous, tool-using, multi-step agents is why 2024–2026 marks the inflection point for enterprise adoption. This guide breaks down concrete AI agent use cases across customer service, sales and marketing, software engineering, finance, logistics, healthcare, HR, and retail — plus the architecture decisions, governance practices, and implementation tips that separate production-ready agents from clever prototypes.
Alexander Stasiak
Apr 29, 2026・11 min read

Tech Lead Roles and Responsibilities
The tech lead has become one of the most indispensable — and most misunderstood — roles in modern software teams. Often confused with engineering managers, tech leads are senior individual contributors who own technical direction, delivery quality, and team enablement, all while staying hands-on with code. This guide breaks down what the role actually entails in 2026: core responsibilities, essential skills, a realistic day-in-the-life, how the role differs across startups, enterprises, and agencies, and a practical roadmap for engineers ready to grow into it.
Alexander Stasiak
Apr 28, 2026・12 min read
Ready to centralize your know-how with AI?
Start a new chapter in knowledge management—where the AI Assistant becomes the central pillar of your digital support experience.
Book a free consultationWork with a team trusted by top-tier companies.




