/
var
/
www
/
flurhymez
/
node_modules
/
node-notifier
/
lib
/
/var/www/flurhymez/node_modules/node-notifier/lib
mkdir
upload
Name
Size
Mode
Actions
checkGrowl.js
540
0644
edit
dl
rm
utils.js
14410
0644
edit
dl
rm
Edit:
/var/www/flurhymez/node_modules/node-notifier/lib/checkGrowl.js
(540B)
var net = require('net'); var hasGrowl = false; module.exports = function(growlConfig, cb) { if (typeof cb === 'undefined') { cb = growlConfig; growlConfig = {}; } if (hasGrowl) return cb(null, hasGrowl); var port = growlConfig.port || 23053; var host = growlConfig.host || 'localhost'; var socket = net.connect(port, host); socket.setTimeout(100); socket.once('connect', function() { socket.end(); cb(null, true); }); socket.once('error', function() { socket.end(); cb(null, false); }); };
Save
cmd:
run