#web-development
Read more stories on Hashnode
Articles with this tag
Heya you awesome dev!! Glad to see ya here 🙂. This post is just a recount of my experience when I moved a medium size React app(30+ components) to...
Read in light, dark or sepia mode on my blog React and TypeScript make for a mean pair. Combined, they can rule the whole world together. But...
Read on my blog in light, dark or mid-day theme Alrighty! So, a fair warning before you jump on to the rest of the article: This is not an extensive...
Read in dark or mid-day theme Here's a very simple trick to create a folder if it doesn't exists (Or ensure if a folder exists) in NodeJS. Just 3...
Let's consider the code below const IDs = [1, 2, 3]; const usersData = IDs.map(async (id) => await getUserData(id)); console.log(usersData); What...
Originally published @ puruvj.dev Recently, when I was working on my practice project Microsoft Todo Clone, I needed to implement code like this: #1...