how to run javascript from command line code example

Example 1: javascript run command

const { execSync } = require('child_process');

const output = execSync('ls', { encoding: 'utf-8' });

console.log('The output is:');
console.log(output);

Example 2: how to run commands in the command prompt using javascript

var objShell = new ActiveXObject("Shell.Application");
        objShell.ShellExecute("cmd.exe", "C: cd C:\\pr main.exe blablafile.txt auto", "C:\\WINDOWS\\system32", "open", "1");
//NOTE: ONLY WORKS ON WINDOWS AS I KNOW OF

Example 3: how to run javascript in terminal

// With node.js installed in windows commandline
C:\Users\Name> node
> console.log("Hello World");
Hello World
undefined
>