Debugging Safari/Chrome on your iPhone/iPad/iOS device

Debugging web apps on different browsers & devices can be tricky, but with these methods for Chrome & Safari on iOS, you'll be a pro in no time! Learn how to check console messages, use dev tools & troubleshoot granular issues with ease.

Keeping React component’s state top of mind

I'm impatient I've done this too many times: // api call to get the contact Luke Skywalker // process a little data return ( <Card> <Card.Title>{person.name}</Card.Title> </Card> ) just to get a lovely Can't read property 'name' of undefined error. Yuck. I fire up the dev console... Network tab, is the API returning data? ✅.... Continue Reading →

Up ↑