Posts

Showing posts from September, 2022

How to install MongoDB Compass on Windows 10

Image
How to install MongoDB Compass on Windows What is MongoDB? MongoDB is NoSQL, non relational type database (i.e., no rows, no columns). MongoDB is a cross-platform document-oriented database program. It is available both in free as well as paid versions. MongoDB provides support for JSON storage. What is MongoDB Compass? MongoDB Compass is a free graphic tool provided by the company to perform CRUD operations locally in your system. How to setup MongoDB compass How to install MongoDB To install MongoDB on your computer just follow the given instructions: First of all,  download the executable file from  here . Make sure to download, only the current version and only the community version. Open the downloaded file and follow the on-screen instructions to install MongoDB. Note: In the setup wizard window, don't change the default settings. If done, you may run into problems, also if you want to install MongoDB Compass at the same time you may check the box that says install Mongo...

How to install Yarn on Windows 10 | v1.22.19

Image
How to install yarn in windows 10 What is Yarn? Yarn is short for Yet Another Resource Negotiator. Yarn is a package manager like NPM but is a more secure, fast, and reliable package manager. The yarn was developed by Meta formerly known as Facebook. The reason behind the development of yarn was the security and performance concern with the NPM. Advantages of Yarn: Secure : Yarn uses checksums to verify the integrity of every installed package before its code is executed. Fast : Yarn caches every package it has downloaded, so it never needs to download the same package again. It also does almost everything concurrently to maximize resource utilization. This means even faster installs. Reliable : Using a detailed but concise lockfile format and a deterministic algorithm for install operations, Yarn can guarantee that any installation that works on one system will work exactly the same on another system. How to install yarn? You may also like: How to install NodeJS on Windows 10 . How to...

How to install React JS on Windows 10 | v18.2.0 |

Image
How to setup React JS in Windows 10 What is React JS? React is an open-source, free JavaScript library that was introduced by Meta formerly known as Facebook. React JS is used as a frontend technology to develop single-page applications (SPA) but keep in mind that it is not a requirement. In ReactJS, we use components to build our applications. React JS uses the Babel compiler to translate JavaScript code to browsers.  What are the Components? In JavaScript we have functions and in React JS we have components (that is functions == components). Components serve the same purpose as functions but in a different manner and as a result, return HTML (in React JS we use JSX instead of plane HTML). Components are of two types, one is Class-based components and the second one is Function-based components. You may also like:  How to install Node JS on Windows 10 . How to install Yarn on Windows 10 . Prerequisite:  Node JS must be installed on the device. Visit here for the installa...

How to install Node JS on Windows 10 | v16.17.0

Image
How to setup Node JS on Windows 10 machine What is Node.js? Since 2009 when it was introduced, Node JS has played an important role in the development of modern dynamic websites. Node.js is a free, open-source, cross-platform, backend JavaScript runtime environment running on the JavaScript engine to execute JavaScript code outside the browser mainly to handle the network request and the code that is running on the servers. By installing Node.js, we are also installing NPM (Node Package Manager, above node +v6). As the name suggests NPM is a node package manager, that helps a developer manage all the packages, installation, and uninstallation with just a simple command line command. Node.js is somewhat similar to ASP.NET and PHP but due to its asynchronous nature, it is faster. Unlike PHP and ASP, after sending the request node.js does not wait for the response from the server instead it is ready to take the second request and as soon as the re...