gulp-bg

v0.0.9
Spawn a process in the background
gulpplugin

gulp-bg

Execute command to run in the background. Calling the returned function restarts the process if it's already running.

Usage

Run a process in the background, and restart on changes.

var bg = require("gulp-bg");

let bgtask;
gulp.task("server", bgtask = bg("node", "--harmony", "server.js"));

const exitCallback = (proc) => { if (proc.errorcode != 0) { process.exit(proc.errorcode); } };

gulp.task("stop", () => {
    bgtask.setCallback(exitCallback);
    bgtask.stop();
  }
});

gulp.task("default", ["server"], function() {
  gulp.watch(["server.js"], ["server"]);
});

License

MIT

npm i gulp-bg

Metadata

  • Unknown
  • Whatever
  • Unknown
  • released 7/10/2017

Downloads

Maintainers