Execute bash in node asynchronously

Look at this beauty!

Sure, it's using clases, might be able to transform this into something nicer...

import { exec } from "child_process";

class CommandExecutorAsync {
  execCommand: (url: string) => Promise<any>;
  constructor() {
    this.execCommand = function (cmd) {
      return new Promise((resolve, reject) => {
        exec(cmd, (error, stdout, stderr) => {
          if (error) {
            reject(error);
            return;
          }
          resolve(stdout);
        });
      });
    };
  }
}

const executor = new CommandExecutorAsync();
return executor.execCommand("sh scripts/prepareFiles.sh");

Actually, something like this should work:

import { exec } from "child_process";

const commandExecutorAsync = () => {
  return {
    execCommand: (cmd: string) => new Promise((resolve, reject) => {
      exec(cmd, (error, stdout, stderr) => {
        if (error) {
          reject(error);
          return;
        }
        resolve(stdout);
      });
    });
  }
}

const executor = commandExecutorAsync();
return executor.execCommand("sh scripts/prepareFiles.sh");
Profile picture

Hey, I'm Edgar, software developer. I enjoy working on decentralised applications, debating ideas and going here and there. Feel free to contact me.