gulp-notify is a crossplatform notification plugin for gulp.
gulp-notify
is a notification plugin for gulp. It can send messages to OS X Notification Center, Linux notifications (using notify-send application), Windows 8+ notifications (using native toaster) or use Growl as a fallback mechanism (using the node-notifier
module). It is also possible to specify a custom notifier for gulp-notify.
Basic sample:
var notify = require("gulp-notify");
gulp.src("./src/test.ext")
.pipe(notify("Hello!"));
gulp-notify
npm package: https://www.npmjs.com/package/gulp-notify.