How to install Node.js 18 LTS on Windows 10/11 from zip archive

Channel:
Subscribers:
5,740
Published on ● Video Link: https://www.youtube.com/watch?v=kH2lp9-whG8



Category:
Guide
Duration: 3:41
11 views
0


In this video we are going to see How to install Node.js 18 on Windows 10 from Zip archive file and run some sample programs.

You can download Node.js from

https://nodejs.org/en
https://nodejs.org/download/release/v18.16.0/

Node JS program that prints the Operating System details and Machine Information.

IMPORTANT NOTE on SOURCE CODE: only source code that are acceptable by the youtube description box will be displayed.
#########################SOURCE CODE STARTS HERE##############################
var os = require('os');
console.log("Platform: " + os.platform());
console.log("Architecture: " + os.arch());
console.log("OS Type: " +os.type());
console.log("CPU Cores: ");
console.log(os.cpus());
console.log("Free Memory: " +os.freemem());
console.log("Uptime: " +os.uptime());
console.log("UserInfo: ");
console.log(os.userInfo());
console.log("Platform: " +os.platform());
console.log("OS Release version: " +os.release());
console.log("Total Memory: " +os.totalmem());
console.log("Network Interfaces: ");
console.log(os.networkInterfaces());
console.log("Endianness: " +os.endianness());
console.log("Load Average: " +os.loadavg());
console.log("Temp Directory: " +os.tmpdir());
#########################END OF SOURCE CODE##############################



Node JS program that sorts the array of numbers and print in ascending order and descending order.

#########################SOURCE CODE STARTS HERE##############################
const arr = [35,13,8,25,2,15,887,23,58,23,57,22,67];
arr.sort(function(a, b){return a-b});
console.log("Sorted array in Ascending Order");
console.log(arr);
console.log("Sorted array in Descending Order");
arr.sort(function(a, b){return b-a});
console.log(arr);
#########################END OF SOURCE CODE##############################


#nodejs #nodejstutorial #nodejs18 #nodejswindows #installnodejs




Other Videos By java frm


2023-05-03How to install Oracle GraalVM Enterprise Edition 22 on Rocky Linux 8 and run Java/C/C++/nodeJS
2023-05-02How to install Oracle GraalVM Enterprise Edition 22 on RHEL 8 and run Java/C/C++/nodeJS
2023-05-02How to install Oracle GraalVM Enterprise Edition 22 on Oracle Linux 8 and run Java/C/C++/nodeJS
2023-05-02How to connect Node.js 20 to Oracle Database 23c FREE using node-oracledb
2023-05-02How to connect Node.js 20 to Oracle Database 19c EE using node-oracledb
2023-05-02How to connect Node.js 20 to Oracle Database 12c EE using node-oracledb
2023-05-02How to install Node.js 20 on Windows 10/11 from zip archive
2023-05-02How to connect Node.js 18 LTS to Oracle Database 23c FREE using node-oracledb
2023-05-02How to connect Node.js 18 LTS to Oracle Database 19c EE using node-oracledb
2023-05-02How to connect Node.js 18 LTS to Oracle Database 12c EE using node-oracledb
2023-05-02How to install Node.js 18 LTS on Windows 10/11 from zip archive
2023-05-02How to connect Node.js 16 LTS to Oracle Database 23c FREE using node-oracledb
2023-05-02How to connect Node.js 16 LTS to Oracle Database 19c EE using node-oracledb
2023-05-02How to connect Node.js 16 LTS to Oracle Database 12c EE using node-oracledb
2023-05-02How to install Node.js 16 LTS on Windows 10/11 from zip archive
2023-05-02How to connect Node.js 14 LTS to Oracle Database 23c FREE using node-oracledb
2023-05-02How to connect Node.js 14 LTS to Oracle Database 19c EE using node-oracledb
2023-05-02How to connect Node.js 14 LTS to Oracle Database 12c EE using node-oracledb
2023-05-02How to install Node.js 14 LTS on Windows 10/11 from zip archive
2023-04-23Ubuntu Studio 23.04 Installation on VirtualBox 7.0 with Guest Additions step by step | Lunar Lobster
2023-04-23Ubuntu Desktop 23.04 Installation on VirtualBox 7.0 with Guest Additions | Lunar Lobster



Tags:
how to install node.js 18 on windows from zip archive
how to install nodejs 18 on windows
nodejs 18 installation on windows
nodejs 18 windows
node.js windows
nodejs install
nodejs setup
nodejs tutorial
downloading and installing Node.js and npm
Environment Setup
Node Package Manager
nodejs program to print machine info
nodejs program to print cpu cores
nodejs program to sort an array
nodejs program to print the operating system information