Waiting for api calls really takes the speed out of my frontend dev work.
How do other devs go about this?
How do other devs go about this?
Comments
If you know roughly what data you are expecting back, you can easily update your state with this _before_ the API call finishes
Developer ergonomics is real! Too much friction=>me not coding😅
It just feels like 2 steps backwards when you're logic is working and then you make the app dumber for testing frontend.
But when you're earlier in development and you do frontend first, that probably works great.
Ill look into that chrome trick, thx.
Or waiting to the server to respond? For this I use patience 😥
And I also need to make it faster but thats a different story😅
So the idea is to set your end points as a variable in your .env and copy paste the response you need to a txt file (json) and just change the variable right?