In this article, we will learn how you can insert Array into Redis using NodeJS. Redis is used as a key-value data store. It supports numerous data storage structures such as simple strings, lists, hash…
Timeouts in Fetch calls using Javascript Promises
Let’s see a quick example of how to have timeouts in fetch calls using JavaScript promises. By default the fetch() API does not have built-in support for timeouts. So we will build our custom solution…
Continue Reading “Timeouts in Fetch calls using Javascript Promises”
Important MIME types for web developers
Mime types define the format of a document that you will typically encounter in web development. In this article let’s look at a few important mime types for web developers. What does MIME stands for?…
Useful Redis Commands for beginners
Redis is an open-source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker. It is highly reliable, scalable, and has high availability. In this article, we look at some useful…
How to cancel a fetch request?
Ever wondered how to cancel a fetch request in your web application. There’s good news, we can finally abort HTTP calls made using fetch from our applications. In this article, I will cover how to…
Share like native mobile apps with Web Share
In this article we will check out how to share like native apps with the Web Share API. Web Share API has been around for some time and can add the great ability to your…
Continue Reading “Share like native mobile apps with Web Share”
Setting Expiry in Redis
This is a short article that features a video on Setting Expiry in Redis. So, we will learn how you can set an expiry time to your Redis keys. What is Redis? Redis is an…
Format HTML input fields with JavaScript
This a quick example of how you can format HTML input fields with JavaScript to allow Credit Card numbers or let’s say Phone numbers in a particular format. Most often or not you might have…
Fixed: React Native new Android project Build Issue
From past few days, whenever I create a new React Native project and then try to launch it on Android, I get a build issue. Even though everything is correct. Let’s find out how to…
Continue Reading “Fixed: React Native new Android project Build Issue”
Useful GatsbyJS commands for beginners
GatsbyJS is a static website generator. It is built on top of React and you can create blazingly fast websites with Gatsby. And I really mean it. I have been using Gatsby for close to…