In web development, it is of immense importance to have great and easy to use tools that can help a great deal with a developer's productivity and also make life as a developer easier and better than it was. In this article I will be taking you throu...
Scope refers to the availability of variables in our code. Questions like can we use variable declared in one function in another function?, if a function contains another function, can they access each other’s variables?. These two questions are qui...
React as per its official documentation is "A JavaScript library for building user interfaces". It is a lightweight, open-source JavaScript library maintained by Facebook. Before a new version of React is released, it is thoroughly tested by the team...
Node like most programming languages uses modules to achieve the goal of separation of concerns, code re-usability and organisation of code into manageable chunks. Each file in Node.js is treated as a separate module. This means creating a module is ...
Even though Node.js is very flexible and can do a lot of things out of the box, using a Node.js framework has proven increase productivity and make the development process much more enjoyable. In this article, I am going to talk about some Node.js fr...
Hello Devs, it's been a while since I published a post here but it sure feels good to be back on the 'network'. One of my goals (new resolution) in 2021 is to write an article or a couple of articles on any technology I am learning to use or experime...