growl-express v1.0.5
growl-express
Installing
$ npm install --global growl-expressStartup
Optional environment variables are PORT to define the http listening port and DISABLE_LOGGING set as "true" to disable logging.
$ growl-express
Server listening on :::23054Usage
The growl-express server exposes three POST methods: /register, /notify, and /setHost.
POST /register
Registers a new application with Growl. Registration is completely optional since it will be performed automatically for you with sensible defaults. Useful if you want your application, with its own icon and types of notifications, to show up in Growl's prefence panel.
Parameters
- appnamethe name of the application (default is 'growl-express')
- appiconurl or file path for an application icon image.
- notificationsa list of defined notification types with the following properties:- .labelname used to identify the type of notification being used (required.)
- .dispnamename users will see in Growl's preference panel (defaults to- .label.)
- .enabledwhether or not notifications of this type are enabled (defaults to true.)
- .iconurl or file path for the notification's icon.
 
Example
curl --header "Content-Type: application/json" --request POST --data '{
    "appname": "growl-express-example-app",
    "notifications": [
      { "label": "default", "icon": "http://imgur.com/amjVCj6.jpg" },
      { "label": "success", "icon": "http://imgur.com/WjZjXjP.jpg" },
      { "label": "error",   "icon": "http://imgur.com/rvtftG9.jpg" }
  ] }' http://localhost:23054/registerPOST /notify
Sends a Growl notification. If an application wasn't registered beforehand with growly.register(), a default application will automatically be registered beforesending the notification.
Parameters
- textthe body of the notification.
- optionsan object with the following properties:- .titletitle of the notification.
- .iconurl or file path for the notification's icon.
- .stickywhether or not to sticky the notification (defaults to false.)
- .labeltype of notification to use (defaults to the first registered notification type.)
- .prioritythe priority of the notification from lowest (-2) to highest (2).
- .coalescingIdreplace/update the matching previous notification. May be ignored.
 
Examples
curl --header "Content-Type: application/json" --request POST --data '{
    "text": "such notify!",
    "options": { "title": "wow" }
  }' http://localhost:23054/notify
curl --header "Content-Type: application/json" --request POST --data '{
    "text": "systems ok!",
    "options": { "label": "success" }
  }' http://localhost:23054/notify
curl --header "Content-Type: application/json" --request POST --data '{
    "text": "everything is broken!",
    "options": {
      "title":"oh no! 😢",
      "label":"error",
      "sticky":true }
  }' http://localhost:23054/notifyPOST /setHost
Set the host and port that Growl (GNTP) requests will be sent to. Using this method is optional since GNTP defaults to using host 'localhost' and port 23053.
Parameters
- hostsome GNTP host.
- portsome GNTP port.
Example
curl --header "Content-Type: application/json" --request POST --data '{
    "host": "some-other-host",
    "port": 1337
  }' http://localhost:23054/setHostSee Also
https://github.com/theabraham/growly
License
The MIT License (MIT)
Copyright 2016 Erik Wilson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.