Tagged in

JavaScript

yield code();
yield code();
Followers
1
Elsewhere
More, on Medium

Implementing Promisable setTimeout

This post is cleaner and more readable in my Blog

In a world controlled by the event loop, setTimeout is the king of execution control. It allows you to schedule function calls to be executed later. However, it can't do one thing - suspend the…


Validating requests with a simple middleware for express.

Originally published in my Blog

A key to a good API design is good control of what data your controllers or API end points accepts. Another important key to a good design — is that you can take a brief…


A different approach for localizing react.js app

Originally published in my blog

Howdy!

I’ve heard you use ReactJS? Good! I also heard you want to localize your application? That’s great! Well proper localization is hard, there are many js…