0.0.1 • Published 8 years ago

gulp-bg-ex v0.0.1

Weekly downloads
1
License
-
Repository
github
Last release
8 years ago

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");

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

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

License

MIT