AfterAcademy Tech
In this tutorial, we are going to learn about some of the features that TypeScript provides which may or may not be present in JavaScript and are important to know if you are migrating from JavaScript to TypeScript.
npm and Yarn are two very popular and highly used package managers and we discuss on the comparisons between the two in this blog
Introduces Async/Await and compare it with Promises. We shall discuss migrating your from Promise Chains to Async/Await .
In this blog, we will learn the concept of Load Balancing. We will see why load balancing is important while we scale our product and how can we reduce the load on a particular server.
Authentication and Authorization are closely related terms and we shall discuss the difference between the two in this blog.
In this tutorial, We are going to learn about the basics of Typescript. If you are having any doubts, whether to use typescript over javascript or Do I really need it? then this article is for you. Learn the concepts behind Typescript and its necessity in today's world.
In this tutorial, we are going to learn how to upload files on the server with the help of Multer and Express in Node.js. The goal is to make you comfortable in building apps that can easily handle any file uploads. At the end of this blog, you will be able to integrate the file uploads in your own apps.
In this tutorial, we will learn to build the RESTful API using Node and Express. The goal is to make you comfortable in building your RESTful API with Node.js and Express. At the end of this blog, you will be able to build your REST APIs using Node.js and Express.
In this blog, we are going to master the concepts of Mongoose, MongoDB with the help of node.js.
Node.js uses the event-loop and callback mechanism to lift off I/O operations from the javascript's thread to the system's kernel. And in this article we are going to understand how this actually happens.