How to use the growly.appname function in growly

To help you get started, we’ve selected a few growly examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github alan-ai / alan-sdk-reactnative / testtools / node_modules / node-notifier / notifiers / growl.js View on Github external
function Growl(options) {
  options = utils.clone(options || {});
  if (!(this instanceof Growl)) {
    return new Growl(options);
  }

  growly.appname = options.name || 'Node';
  this.options = options;

  EventEmitter.call(this);
}
util.inherits(Growl, EventEmitter);
github mikaelbr / node-notifier / notifiers / growl.js View on Github external
function Growl(options) {
  options = utils.clone(options || {});
  if (!(this instanceof Growl)) {
    return new Growl(options);
  }

  growly.appname = options.name || 'Node';
  this.options = options;

  EventEmitter.call(this);
}
util.inherits(Growl, EventEmitter);

growly

Simple zero-dependency Growl notifications using GNTP.

MIT
Latest version published 8 years ago

Package Health Score

65 / 100
Full package analysis