#nodejs
Read more stories on Hashnode
Articles with this tag
Why to use Docker?Docker is an open platform that offers portability, consistency, and scalability for developing, shipping, and running applications...
Introduction ESLint has a comprehensive set of rules for JavaScript code that cover stylistic choices and prevent common bugs. Using ESLint alone will...
The most common pattern I use when writing custom React hooks is to return a tuple of [state, handlers]. state is the value held by the hook, and...
It's true. It really doesn't matter. That said, I'm going to share a few of my preferences and why they are what they are. Warning: These are my...
One Way to Make Your Programs More Flexible ยท I've been working on lessons for a new course recently, and one of the the lessons I created inspired me to...
In JavaScript, and some other languages, too, there is the concept of a "closure". This concept can be confusing at first, but once understood, can...