Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Directly use Batch file output as nodejs variable without using txt

what I'm doing now is make a txt file using batch file output

@echo off
set fname=Logan
set lname=Anderson
set gender=male
echo %fname%>>1.txt
echo %lname%>>1.txt
echo %gender%>>1.txt

Then read that txt using nodejs and use those as nodejs input, but what I want is if it is possible to use batch file output as nodejs input without using this txt file, directly call "nodejs compiled project using pkg" exe file with variables from batch

such as, In batch file

@echo off
set fname=Logan
set lname=Anderson
set gender=male
start "" "mycompiledproject.exe" "%fname%" "%lname%" "%gender%"
like image 640
LoNE WoLvES Avatar asked Apr 30 '26 02:04

LoNE WoLvES


1 Answers

To use command line arguments in node, you need to use process.argv (here is the documentation for it: https://nodejs.org/docs/latest/api/process.html#process_process_argv)

So in your case, your node.js code should look something like this:

const process = require('process');

process.argv.forEach(function(value, index, array){
    //value will be the argument(s), index is there position,
    //and array is the entire array they are in. this function 
    //is called for each value.
});

once you turn this to exe, it should run in your batch just fine.

like image 189
R. Sargenti Avatar answered May 01 '26 16:05

R. Sargenti



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!