Promises in javascript for beginners
In this tutorial, we will be looking at Promises in Javascript. Let’s firstly understand, what promises are. Promises are an alternative to callbacks for delivering the result of an asynchronous operation. It allows users to perform asynchronous operations very effectively and seamlessly
Nodejs API best practices
In this tutorial, we will be looking at some of the nodejs API best practices that we should be keeping in mind while building our Nodejs REST API. Our main focus in this post will be to make our API secure, scalable, and optimized. So let’s get started, shall we? Handle errors gracefully One of […]