growl alternatives and similar packages
Based on the "Miscellaneous" category.
Alternatively, view growl alternatives based on common mentions on social networks and blogs.
-
ex_rated
ExRated, the Elixir OTP GenServer with the naughty name that allows you to rate-limit calls to any service that requires it. -
ecto_autoslug_field
Automatically create slugs for Ecto schemas. -
gen_task
Generic Task behavior that helps encapsulate errors and recover from them in classic GenStage workers. -
exprint
A printf / sprintf library for Elixir. It works as a wrapper for :io.format. -
countriex
All sorts of useful information about every country. A pure elixir port of the ruby Countries gem -
Jisho-Elixir
A Japanese dictionary API; a wrapper around Jisho's API (http://jisho.org) -
egaugex
A simple egauge parser to retrieve and parse data from egauge devices -
presentex
Elixir -> HTML/JavaScript based presentation framework intended for showing Elixir code -
mixstar
Elixir Mix task to starring GitHub repository with `mix deps.get`ting dependent library
Access the most powerful time series database as a service
Do you think we are missing an alternative of growl or a related project?
Popular Comparisons
README
Growl
A simple wrapper to the command line interface for the Growl OSX notification system.
Setup
defp deps do
[
{:growl, github: "zachallett/growl"}
]
Usage
Within the script you would like to create a growl
notification, make the module call as follows:
Growl.notify("This is a notification")
The API accepts messages in a string format, as well as a list. If the first argument is a list, the first object is the title line, with subsequent lines being the body of the notification.
Growl.notify(["Example", "This is an example notification"])
would give the following notification:
)
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request