So you're probably aware that you might not need Redux, but maybe Redux is a good fit for your app. That means we should use it for managing all of our application state... right? Wrong. If you followed along with my Building a Web App From the Ground Up series, you probably already are using Redux in [...]Continue reading
Refactoring JQuery to React
JQuery is quickly becoming a thing of the past, and in it’s place stands React. I mean, even John Resig, author of JQuery, uses React now. So how can you refactor your website to use React instead of JQuery?
In this article I’ll show you step-by-step how to refactor a website using JQuery into React, using real examples.
Continue readingWhat’s the best way to store tokens in Redux?
One problem I've been struggling with lately is: what is the best way to store tokens when using redux? I could store it in the Redux state, but then it wouldn't be there after refresh. I could just store it in the browser's localStorage, but where would I do that? Before I dive into what [...]Continue reading
Building a Web App From the Ground Up: Getting Started — Part 1
So you want to build a web app. Well what's stopping you? If you're reading this, you've probably already been programming for some time, but you're just missing some of the steps. I've been there before. I know how frustrating it can be to know 70% of what you need to do to build a [...]Continue reading