0

I want to run a bat file with child_process module in NodeJS but I want the application to stop and the bat file to continue processing without waiting for the result of the application.

Code I used:

const { exec } = require("child_process");
exec("start cmd /c my.bat");

0 Answers0