Questions tagged [gulp-notify]

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.

31 questions
0
votes
1 answer

Gulp: Error Messages and Notifications with Plumber

In this example, it states you can use Gulp-Plumber and Gulp-Notify to display a message and sound each time there is an error. Gulp-Plumber will ensure that Gulp watch will continue to run. However, when I try it, I keep on getting this error…
big_smile
  • 1,487
  • 4
  • 26
  • 59
1 2
3