'Run NodeJS bat file and finish the process
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");
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
