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

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



Category:
Guide
Duration: 4:20
7 views
0


In this video we are going to see How to install Node.js 20.0.0 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/v14.21.3/

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 #nodejs20 #nodejswindows #installnodejs




Other Videos By java frm


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
2023-04-23125 Go Programs using chatGPT with verified results - 125 Golang programs with source code download
2023-04-22Fedora 38 Workstation installation on VirtualBox 7.0 with Guest Additions
2023-04-22Variable Scope in nested For Loop in Golang 1.20
2023-04-22Variable Scope in Golang 1.20
2023-04-22How to validate XML in Golang 1.20
2023-04-22How to validate JSON string in Golang 1.20
2023-04-22How to print unique numbers in array in Golang 1.20
2023-04-22How to Generate a Sequence of Ulam Numbers in Golang 1.20



Tags:
how to install node.js 14 on windows from zip archive
how to install nodejs 14 on windows
nodejs 14 installation on windows
nodejs 14 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