Introduction Redux is a self branded as “A Predictable State Container for JS Apps”, which is fancy but cryptic. So let’s have an overview of Redux within a React application! A bit of redux history To put it all into perspective, because Redux...
Having implemented and experienced the benefits of event sourcing, I wanted to talk about the pitfalls that could make your event journey a nightmare. If you are not familiar with event sourcing or event driven architecture, I recommend reading th...
Assuming you have been interested in React and started creating simple apps, you now want to make it more than a single web page by adding some routing into the mix. So take your newly React template App and let’s see how we can do some React Rout...
Google Analytics is a free service meant to track users and collect their online behaviour data when using a website, app or any kind of web product. And like mosquitoes you will find it almost everywhere you go to relax. So let’s have a look at i...
Now that we’ve seen how to create a GraphQL API from Apollo Server, Advanced Queries and Mutation to Bulk Mutations, custom Scalars and advanced Resolvers, you should have the hang of it by now. So let’s start using it in our front-end. The techno...
Here are some of the “advanced” techniques that you can use when working with Jekyll. It’s a compilation of Jekyll tips that I have tried or used within this theme Type-on-Strap. Hopefully some of them will be useful for you too! 🧪 I am always on...
As you start exploring more and more the world of GraphQL APIs, you may want to get more out of your resolvers. As you decompose your business logic into multiple microservices, all advertising a GraphQL Api, you may encounter a need to query them...
You’ve definitely heard about version management, but how much do you know about it? Multiple tools exist but the one that has become predominant as of today is certainly git. So we’re going to focus on git flows for software’s version control. ...
Docusaurus 🦖 is a static-site generator based on Node.js with react components and made by Facebook. It has been open sourced now the v2 is in beta, so we’ll check out this new alternative. You may already have seen it while browsing in the jest...
In this article we will talk about bulk mutation, the desire to update multiple entities with a single input. Some common use case would be if we had queries or mutations that take one entity at a time, and we want to: Query multiple entities ...