Multi-Node Cluster Deploy a service locally on a multi-node cluster. Setup This article assumes you have Minikube and Kubectl installed. Create these files in your project directory. # simple-web-deployment.yml apiVersion: apps/v1 kind: Deployment me...
In this demo, we'll set up pagination for a table using React Hooks and Material-UI. Setup If you'd like to follow along, fork the starter repository. Getting Started Inside of App.jsx, you'll see the two components we're concerned with, MyTable an...
This is part two where we'll be adding testing and linting to our React Starter Template. Here's React Starter Template - Part 1 where we setup React with Parcel. Testing Install Jest yarn add -D jest Install Enzyme yarn add -D enzyme enzyme-adapter...
Probably the easiest way to get started with React is to use an online editor like codesandbox.io or repl.it. If you'd rather develop locally, Create React App is a great choice. For me, I like to practice with the same tools I use at work, so I need...
I'm going to show you an easy way to prevent pushing code that will break your continuous integration pipelines. This can be achieved by simply linting and testing code, before pushing to the repository. The only problem with that is you have to reme...
I ran into a situation recently where I was working with an API that only returned one item at a time, but all the items had to be sent back during the update request. That meant that I had to maintain an array containing objects, and give the user t...