{"id":32166277,"url":"https://github.com/notifiex/notifiex","last_synced_at":"2026-02-21T18:02:02.553Z","repository":{"id":50675826,"uuid":"488312080","full_name":"notifiex/notifiex","owner":"notifiex","description":"A dead simple Elixir library for sending notifications to various messaging services. (supports file uploads, multiple notification dispatching, and much more! ✨)","archived":false,"fork":false,"pushed_at":"2024-02-26T16:17:23.000Z","size":220,"stargazers_count":71,"open_issues_count":6,"forks_count":8,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-13T02:00:07.030Z","etag":null,"topics":["discord","elixir","library","messaging","notification-service","notifications","slack"],"latest_commit_sha":null,"homepage":"https://hex.pm/packages/notifiex","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/notifiex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-05-03T17:59:04.000Z","updated_at":"2025-07-09T08:17:31.000Z","dependencies_parsed_at":"2023-07-13T08:29:18.070Z","dependency_job_id":null,"html_url":"https://github.com/notifiex/notifiex","commit_stats":null,"previous_names":["burntcarrot/notifiex"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/notifiex/notifiex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notifiex%2Fnotifiex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notifiex%2Fnotifiex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notifiex%2Fnotifiex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notifiex%2Fnotifiex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/notifiex","download_url":"https://codeload.github.com/notifiex/notifiex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notifiex%2Fnotifiex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29689644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T15:51:39.154Z","status":"ssl_error","status_checked_at":"2026-02-21T15:49:03.425Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["discord","elixir","library","messaging","notification-service","notifications","slack"],"created_at":"2025-10-21T15:05:00.923Z","updated_at":"2026-02-21T18:02:02.541Z","avatar_url":"https://github.com/notifiex.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src = \"static/notifiex.png\"\u003e\n\n[ci]: https://github.com/burntcarrot/notifiex/actions/workflows/elixir.yml\n[ci-badge]: https://github.com/burntcarrot/notifiex/actions/workflows/elixir.yml/badge.svg\n\n[![Hex](https://img.shields.io/hexpm/v/notifiex.svg)](https://hex.pm/packages/notifiex)\n[![Actions status][ci-badge]][ci]\n\n\u003e ❤️ If you're using Notifiex for your project, or in your company, please say a hi 👋 [here!](https://github.com/burntcarrot/notifiex/issues/1)\n\n**Why Notifiex?**\n- 📦 Easy-to-use, supports multiple [services](#services)!\n- ⬆️ File upload support! (_to the notification services that will accept them_)\n- ⚡ Incredibly lightweight (_minimal dependencies_)\n- 🤹 Asynchronous notification dispatching (using Tasks and Supervisor)\n\n\u003ch4\u003eTable of Contents:\u003c/h4\u003e\n\n- [Installation](#installation)\n- [Usage](#usage)\n- [Services](#services)\n- [Plugins](#plugins)\n- [File Uploads](#file-uploads)\n- [License](#license)\n- [Acknowledgements](#acknowledgements)\n\n## Installation\n\n[Notifiex](https://hex.pm/packages/notifiex) can be installed\nby adding `notifiex` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:notifiex, \"~\u003e 1.2.0\"}\n  ]\nend\n```\n\n## Usage\n\nHere is an example on how Notifiex sends a Slack message:\n\n```elixir\n\u003e Notifiex.send(:slack, %{text: \"Notifiex is cool! 🚀\", channel: \"general\"},  %{token: \"SECRET\"})\n```\n\nSending a Discord message:\n\n```elixir\n\u003e Notifiex.send(:discord, %{content: \"Notifiex is cool! 🚀\"},  %{webhook: \"SECRET\"})\n```\n\nSending in async mode (through Tasks and Supervisors):\n\n```elixir\n\u003e Notifiex.send_async(:discord, %{content: \"Notifiex is cool! 🚀\"},  %{webhook: \"SECRET\"})\n```\n\nSending multiple messages:\n\n```elixir\nnotifs = [\n  slack_test: {:slack, %{text: \"Notifiex is cool! 🚀\", channel: \"general\"},  %{token: \"SECRET\"}},\n  discord_test: {:discord, %{content: \"Notifiex is cool! 🚀\"},  %{webhook: \"SECRET\"}}\n]\n\n# send synchronously\nNotifiex.send_multiple(notifs)\n\n# send in async mode\nNotifiex.send_async_multiple(notifs)\n```\n\n## Services\n\nNotifiex currently supports these services:\n\n- [x] Slack (check [guide](https://github.com/burntcarrot/notifiex/blob/main/guides/slack.md) 📖)\n- [x] Discord (check [guide](https://github.com/burntcarrot/notifiex/blob/main/guides/discord.md) 📖)\n\n## Plugins\n\n\u003e 📢 Notifiex now supports custom plugins! [Here's a complete guide](https://github.com/burntcarrot/notifiex/blob/main/guides/plugins.md) on creating and using plugins!\n\nAs a starter, you can create a plugin for any of these services:\n\n- [ ] Linear\n- [ ] Mailgun\n- [ ] Microsoft Teams\n- [ ] SendGrid\n- [ ] Plivo\n- [ ] Telegram\n- [ ] Twitter\n- [ ] Zulip\n- [ ] Rocket.Chat\n- [ ] Google Chat\n- [ ] Mattermost\n\n## File Uploads\n\nNotifiex supports uploading files (text-based, binaries, etc.) to:\n- [x] Slack\n- [ ] Discord\n\n## License\n\nNotifiex is licensed under the MIT License.\n\n## Acknowledgements\n\nnotifiex is inspired by [ravenx](https://github.com/acutario/ravenx). Please do check out their project!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnotifiex%2Fnotifiex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnotifiex%2Fnotifiex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnotifiex%2Fnotifiex/lists"}