run node script code example
Example 1: how to run shell script
chmod +x <fileName>
./fileName.
Example 2: run node js
node name_app.js
Example 3: powershell script run
./myscript.ps1 //if is in the current directory
c:/scripts/myscript.ps1 //if you want to use the full path
&"C:/my path with space/myscript.ps1" //if your path has spaces
Example 4: how to run a js file in node
Save your .js file in the same folder as node.js,
For windows , Usually location is- "C:\Program Files\nodejs"
Open 'Command prompt and locate node.js folder' OR directly open 'Node.js command prompt' and type
>> node (file_name).js
Example 5: javascript running at node
const inNode = new Function('try{return this===global;}catch(err){return false;}')();