Enterprise software is developed to manage complicated tasks, such as monitoring and controlling essential business operations, gathering and analyzing data, and enforcing security policies. These programs tend to be complex, requiring much user input and a wide variety of separate but related components. The optimization of these applications is another potential obstacle. Additionally, enterprise apps…Continue Reading
nodejs
How to get the total memory and free memory of a system using Node.js?
In today’s article, we will discuss how to get the total memory and available memory of the system using NodeJS. To get the total memory of the operating system using NodeJS, you can use method from the module in Node.js. Note that this method returns total memory in bytes. // import os module const os…Continue Reading
Node.js – MySQL INSERT Record Example
This tutorial demonstrates how to insert a record into MySQL database using NodeJs. This step by step guide includes init of node js, importing MySQL module and finally insert two records to the database. Open the console and create a folder called db_basic. And run the following command in the console. npm init This will…Continue Reading
Install Node.js on Windows and create test app
Installing a node.js application in windows is pretty easy. First, you need to go to nodejs downloads page. Download the windows msi version as the installer. Run the .msi file from anywhere from your computer. And installation window appears, go through the process one by one. Finally, if you are done restart the computer, to…Continue Reading