grunt-growl

0.1.5 • Public • Published

grunt-growl

Configure desktop notifications inside your gruntfile. Makes 'grunt watch' more fun.

Getting Started

Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-growl

Then add this line to your project's grunt.js gruntfile:

grunt.loadNpmTasks('grunt-growl');

And install a dependency terminal-notifier with RubyGems:

sudo gem install terminal-notifier

Documentation

This grunt multitask allows you to configure desktop notifications inside your gruntfile and use them inside your tasks. This tasks makes use of node-growl in order to make desktop notifications cross platform-ish.

Example

grunt.initConfig({
    growl : {
     myMessage : {
     message : "Some message",
     title : "Notification Title",
     image : __dirname + "/foo.png"
     }
    }
});
 
grunt.loadNpmTasks('grunt-growl');
 
grunt.registerTask('default', 'growl:myMessage');

If you run 'grunt' you would see something like this:

grunt-growl example

Notification Properties

  • message (required) : The message of the of notification
  • title (optional) : The title of the notification
  • image (optional) : The image of the notification. Use __dirname to make path to image relative to your gruntfile.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.

Release History

(Nothing yet)

License

Copyright (c) 2012 Alex Tucker
Licensed under the MIT license.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.5
    34
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.5
    34
  • 0.1.3
    0
  • 0.1.2
    4
  • 0.1.1
    0
  • 0.1.0
    0

Package Sidebar

Install

npm i grunt-growl

Weekly Downloads

27

Version

0.1.5

License

none

Last publish

Collaborators

  • alextucker