Run a bat file from node.js | Execute child process from node.js
We can execute external command or any process from the node js. With the help of child_process module we can achieve it. 1. var spawn = require('child_process').spawn, ls = spawn('cmd.exe',…