The first few videos of the (free) Beginner’s Guide to ReactJS are all about React elements and JSX. So here they are for you to watch along with this blog post. Enjoy! Now on to the blog post! I think ...

Web development, like most technologies, moves in waves and cycles. Static websites were all we had in the beginning. But, pretty soon, developers were hacking together the first server-generated sites thanks to Perl and PHP. This was the advance that ...

The inspiration for this blogpost comes from seeing React tests that look like this: const utils = render(<Foo />) test('test 1', () => { // use utils here }) test('test 2', () => { // use utils here too }) ...

A few weeks back I found a bug with IE where all the user saw was a blank white page. If you’ve been around for a while in the wonderful world of the client-side SPA, you’ll probably know what was ...

I remember a few years ago when I got started with React I decided I needed to figure out how to test React components. I tried shallow from enzyme and immediately decided that I would never use it to test ...