I have remote-server(192.168.0.104) and work on laptop window computer(192.168.0.100) with win7. I install growl for window.
server
var growl = require('gulp-notify-growl');
var growlnotifier = growl({
hostname: "192.168.0.100",
password: "test"
}, "TestApp");
growlnotifier.onError({
title: 'Compile Error',
message: '<%= error.message %>
});
laptop
tap security
checked Require password for LAN apps
checked Allow network notification
checked Allow clients to subscribe to notifications
add "test" to Password Manager
'Compile Error' display in terminal.
[15:17:43] gulp-notify: [Compile Error] Cannot find module
but notifications not appear in window.
How to get notifications?
Maybe you are using
gulp-notifyinstead ofgulp-notify-growl. Withgulp-notify-growlthe code you are using seems to be working. Find the correct module and install it again. Even thoughgulp-notify-growlis deprecated, it still works.Note that when Growls picks the
gulpapp, you can configure the forwarding with the Growl UI, which is easier!