ββReact Hooks are a function type that allows you to hook into React state and lifecycle features. This feature was first introduced on React 16.8 update, and since then, it has become an essential part of any React application.
#React
#React
Medium
Top 10 React Hook Libraries
Recommended React hook libraries in 2021.
ββWhen researching the internet and the technologies behind it, you might have come across this term: HTTP. HTTP, or Hypertext Transfer Protocol, is the backbone of the web and is the universal protocol for transferring text data. You have no doubt used it, as the website you learned about HTTP on uses HTTP.
β± 4 minutes read
#HTTP
β± 4 minutes read
#HTTP
Medium
What is HTTP/3, and Why Does it Matter?
HTTP/3, or HTTP over QUIC, brings many new performance features to HTTP
ββThe React Team has recently released a new alpha version of React 18. The main addition to this new version is concurrent features that improve the performance of your React application.
β± 5 minutes read
#React
β± 5 minutes read
#React
Medium
Trying Out React 18 Alpha Release
My experience using the React 18 alpha release.
ββWhen you get the chance to build large frontends, the need arises for a global store of state in your app. This could be to store data about the user that is logged in, maintain metadata for specific parts of your UI or data from a service. The question that comes about is how can you actually implement this?
β± 8 minutes read
#React
β± 8 minutes read
#React
Medium
An overview of React State Management Techniques in 2021 βοΈπ
When you get the chance to build large frontends, the need arises for a global store of state in your app. This could be to store dataβ¦
ββIβve recently βdiscoveredβ and old laptop forgotten somewhere in the depths of my basement and decided to create a mini home lab with it where I could play around with Kubernetes.
β± 6 minutes read
#Kubernetes
β± 6 minutes read
#Kubernetes
Medium
How to create Kubernetes home lab on an old laptop
Introduction
ββReact is a JavaScript library that lets you create a prime UI for both mobile and web applications. It integrates seamlessly with other JavaScript frameworks and libraries and includes small, reusable pieces of code, called components. Due to their high modularity, React component libraries not only optimize UI development but also provide extreme flexibility.
β± 5 minutes read
#React
β± 5 minutes read
#React
DEV Community
React Libraries To Use In 2021: 17 Top Picks
React is a JavaScript library that lets you create a prime UI for both mobile and web applications....
ββThis is an exploration of two approaches of morphing svg from one shape into another, and the trade-off of each one of them.
β± 4 minutes read
#SVG
β± 4 minutes read
#SVG
Medium
SVG Morphing (the easy way and the hard way)
This is an exploration of two approaches of morphing svg from one shape into another, and the trade-off of each one of them.
ββTypescript is the next big thing in the Front End Development domain and if you are looking to upgrade your skills from a junior to an intermediate frontend developer, then it is a must have skill.
β± 6 minutes read
#React #TypeScript
β± 6 minutes read
#React #TypeScript
DEV Community
Getting started with Typescript with React Hooks [2021]
Typescript is the next big thing in the Front End Development domain and if you are looking to...
ββI have seen several colleagues get fired, whether they were programmers or programming managers.
β± 6 minutes read
#Career
β± 6 minutes read
#Career
Medium
The Most Common Causes Why Programmers Get Fired
13 reasons you need to bear in mind to avoid losing your job.
ββWhen I first learned how to use Redux, it was a bit overwhelming keeping up with the different files, functions, types, actions, and reducers necessary to make it work.
β± 5 minutes read
#React
β± 5 minutes read
#React
Medium
Is Context Better than Redux?
When I learned about the React Context API I was baffled by how simple it was to manage state across components.
ββHi! Programmers, Today I will explore 10 javaScript Concepts That Every Developer Should Know. So, letβs goβ¦.
β± 5 minutes read
#JavaScript
β± 5 minutes read
#JavaScript
Medium
10 JavaScript Concepts That Every Developer Should Know.
Hi! Programmers, Today I will explore 10 javaScript Concepts That Every Developer Should Know. So, letβs goβ¦.
ββDocker introduced containers technology as mainstream around 2013. Since then, containerization became an integral part of cloud and digital transformations. Nowadays most of the traditional server workloads such as web APIs, web apps (broadly speaking server side workloads), are containerized.
β± 5 minutes read
#Docker
β± 5 minutes read
#Docker
Medium
5 unusual Docker container use cases
Introduction
ββUUID is one of the most used universal identifiers in software development. However, over the past few years, other alternatives challenged its existence.
β± 5 minutes read
#JavaScript #Tools
β± 5 minutes read
#JavaScript #Tools
Medium
Why is NanoID Replacing UUID?
A Tiny, URL-Friendly Unique String Generator for JavaScript.
ββI have a request to perform some Google API search for some keywords and save the result (the URLs) into text files. It's a good chance to use Goβs concurrency pattern to assembly the pipeline, therefore, parallelizing the IO and CPU.
β± 4 minutes read
#Go
β± 4 minutes read
#Go
Medium
Golang Pipeline in Practise
I have a request to perform some Google API search for some keywords and save the result (the URLs) into text files. It's a good chance toβ¦
ββIn this tutorial, we will be building a YouTube downloader with the backend implemented in Express and the frontend in React.
β± 5 minutes read
#Node #React
β± 5 minutes read
#Node #React
Medium
How to Create a YouTube Downloader with Node.js and React
In this tutorial, we will be building a YouTube Downloader with the backend implemented in Express and the frontend in React.
ββWhen talking about microservices, for a few years now that has meant HTTP REST APIs. Granted, some of them mightβve been half-done implementations that only picked some of the features from the REST standard. However, they were all aiming for a REST implementation anyway.
β± 8 minutes read
#Architecture
β± 8 minutes read
#Architecture
Medium
Not All Microservices Need to Be RESTβββ3 Alternatives to the Classic
REST is not the answer to every API question
ββWith microservices, a backend-for-frontend (aka BFF) is used as an interface for request handling, data manipulation, and formatting, etc. Having a BFF gives many advantages and a few disadvantages as well.
β± 6 minutes read
#Architecture
β± 6 minutes read
#Architecture
Medium
BFF Pattern β Dos and Donβts
The right way to implement backend-for-frontend
ββLittle features inside Chrome DevTools that will change and speed up your debugging experience
β± 4 minutes read
#Tools
β± 4 minutes read
#Tools
Medium
Did you know Chrom DevTools can do this?
Little features inside Chrome DevTools that will change and speed up your debugging experience
ββIn JavaScript,
β± 5 minutes read
#JavaScript
yield
is used to pause the execution of a function. When the function is invoked again, the execution continues from the last yield
statement.β± 5 minutes read
#JavaScript
Medium
How To Transform JavaScript Functions Into Memory-Efficient Generators
Start using yield in JavaScript