Ronak Bhanushali

How to Make a Node Post Request: Understanding HTTP & Request Module

Node.js is an asynchronous event-driven Javascript runtime used to build different kinds of applications. It helps us use JavaScript for behind-the-scenes tasks like implementing server-side logic, building APIs, handling database operations, handling requests etc. Using Node.js we can also make HTTP post requests. HTTP stands for Hyper Text Transfer Protocol, this is a request-response protocol […]

How to Make a Node Post Request: Understanding HTTP & Request Module Read More »

Resolving ‘node’ is not recognized as an internal or external command Error

We all are aware of Node.js being one of the most widely used JavaScript runtime which allows developers to run JavaScript on the server side. However, sometimes executing a node command may encounter a strange error stating that “node” is not recognized as an internal or external command. This mainly occurs when our system is

Resolving ‘node’ is not recognized as an internal or external command Error Read More »

What Is the Purpose of ‘node_modules’ Folder?

The node_modules folder is common for developers, and students working with Node.js, a popular Javascript runtime. This folder plays a crucial role when it comes to managing dependencies. The dependencies are basically packages or modules on which our Node.js project depends. In this article, we will understand the node_modules folder, its purpose and work by

What Is the Purpose of ‘node_modules’ Folder? Read More »