Aditya Gupta

What is Node.js?

Node.js was developed by Ryan Dahl in 2009. It is a JavaScript runtime built upon the V8 engine that uses Javascript for creating the server side. The server created using Node.js can interact with the operating system and file system. It can perform all types of non-blocking I/O operations. Node.js is lightweight, cross-platform, and can […]

What is Node.js? Read More »

JavaScript Strict Mode: What it Does and Doesn’t Allow

The strict mode in JavaScript helps us to write secure code by detecting accidental errors and bugs in the code. It produced the visible mistakes hidden in JavaScript, by default JavaScript just failed silently without showing the errors. In this tutorial, you will learn about the strict mode in JavaSript, the process of activating strict mode

JavaScript Strict Mode: What it Does and Doesn’t Allow Read More »

MongoDB Cursor in NodeJS

A MongoDB database has multiple collections. These collections can store millions of documents(data in MongoDB is called a document) and we can fetch all the data from a collection by performing a read operation using different methods like the collection.find(). These Read operations methods do not return documents instead they return a cursor. This tutorial will

MongoDB Cursor in NodeJS Read More »