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?