All Projects → nikoksr → Notify

nikoksr / Notify

Licence: mit
A dead simple Go library for sending notifications to various messaging services.

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Notify

Integrations
Connect your App to Multiple Messaging Channels with the W3C Open standard.
Stars: ✭ 721 (-0.83%)
Mutual labels:  bot, discord, telegram, slack, messaging, line, twitter
Bottender
⚡️ A framework for building conversational user interfaces.
Stars: ✭ 3,803 (+423.11%)
Mutual labels:  bot, telegram, slack, messaging, line
Tradingview Webhook Bot
⚙️ Send TradingView alerts to Telegram, Discord, Slack, Twitter and/or Email.
Stars: ✭ 135 (-81.43%)
Mutual labels:  bot, discord, telegram, slack, twitter
Messaging Apis
Messaging APIs for multi-platform
Stars: ✭ 1,754 (+141.27%)
Mutual labels:  bot, telegram, slack, messaging, line
Franz
Franz is a free messaging app for services like WhatsApp, Slack, Messenger and many more.
Stars: ✭ 4,088 (+462.31%)
Mutual labels:  telegram, slack, messaging, whatsapp
Emberclear
Encrypted Chat. No History. No Logs.
Stars: ✭ 157 (-78.4%)
Mutual labels:  hacktoberfest, discord, slack, messaging
Matterbridge
bridge between mattermost, IRC, gitter, xmpp, slack, discord, telegram, rocketchat, twitch, ssh-chat, zulip, whatsapp, keybase, matrix, microsoft teams, nextcloud, mumble, vk and more with REST API (mattermost not required!)
Stars: ✭ 4,452 (+512.38%)
Mutual labels:  discord, telegram, slack, whatsapp
Broid Kit
Bot framework powered by Broid
Stars: ✭ 58 (-92.02%)
Mutual labels:  bot, slack, messaging, twitter
Ferdi
🧔🏽 Ferdi helps you organize how you use your favourite apps by combining them into one application
Stars: ✭ 4,089 (+462.45%)
Mutual labels:  hacktoberfest, telegram, slack, whatsapp
Inventory Hunter
⚡️ Get notified as soon as your next CPU, GPU, or game console is in stock
Stars: ✭ 778 (+7.02%)
Mutual labels:  bot, discord, telegram, slack
Alertmanager
Prometheus Alertmanager
Stars: ✭ 4,574 (+529.16%)
Mutual labels:  hacktoberfest, slack, email, notifications
Diun
Receive notifications when an image is updated on a Docker registry
Stars: ✭ 704 (-3.16%)
Mutual labels:  discord, telegram, slack, notifications
Flottbot
A chatbot framework written in Go. All configurations are made in YAML files, or inside scripts written in your favorite language.
Stars: ✭ 175 (-75.93%)
Mutual labels:  bot, discord, telegram, slack
messaging-apis
Messaging APIs for multi-platform
Stars: ✭ 1,759 (+141.95%)
Mutual labels:  slack, telegram, line, messaging
Messenger Ios Chat Swift Firestore
Messenger Clone - Real-time iOS Chat with Firebase Firestore written in Swift
Stars: ✭ 405 (-44.29%)
Mutual labels:  discord, telegram, messaging, whatsapp
Wbot
A simple Web based BOT for WhatsApp™ in NodeJS 😜. Working as of 📅 Feb 14th, 2020
Stars: ✭ 638 (-12.24%)
Mutual labels:  bot, hacktoberfest, whatsapp
Javacord
An easy to use multithreaded library for creating Discord bots in Java.
Stars: ✭ 368 (-49.38%)
Mutual labels:  bot, hacktoberfest, discord
Pokemongo Bot
The Pokemon Go Bot, baking with community.
Stars: ✭ 3,730 (+413.07%)
Mutual labels:  bot, telegram, slack
Unifiedmessagerelay
Group Message Forward Framework (supports QQ Telegram Line Discord)
Stars: ✭ 363 (-50.07%)
Mutual labels:  discord, telegram, line
Chat
Instant messaging platform. Backend in Go. Clients: Swift iOS, Java Android, JS webapp, scriptable command line; chatbots
Stars: ✭ 8,238 (+1033.15%)
Mutual labels:  telegram, messaging, whatsapp
notify logo

GitHub tag (latest SemVer) Go Report Card Codacy Badge Maintainability FOSSA Status go.dev reference

A dead simple Go library for sending notifications to various messaging services.

About

Notify was born out of my own need to have my API servers running in production be able to notify me when critical errors occur. Of course, Notify can be used for any other purpose as well. The library is kept as simple as possible for quick integration and ease of use.

Disclaimer

Any misuse of this library is your own liability and responsibility and cannot be attributed to the authors of this library. See license for more.

Spamming through the use of this library may get you permanently banned on most supported platforms.

Install

go get -u github.com/nikoksr/notify

Example usage

// Create our notifications distributor.
notifier := notify.New()

// Create a telegram service. Ignoring error for demo simplicity.
telegramService, _ := telegram.New("your_telegram_api_token")

// Passing a telegram chat id as receiver for our messages.
// Basically where should our message be sent?
telegramService.AddReceivers(-1234567890)

// Tell our notifier to use the telegram service. You can repeat the above process
// for as many services as you like and just tell the notifier to use them.
// Inspired by http middlewares used in higher level libraries.
notifier.UseServices(telegramService)

// Send a test message.
_ = notifier.Send(
	context.Background(),
	"Subject/Title",
	"The actual message - Hello, you awesome gophers! :)",
)

Supported services

Please create feature requests for missing services (see #3 for example)

  • Amazon SES
  • Discord
  • Email
  • Line
  • Mailgun
  • Microsoft Teams
  • Plivo
  • Pushbullet
  • RocketChat
  • SendGrid
  • Slack
  • Telegram
  • Twitter
  • WhatsApp

Credits

Author

Niko Köser

Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if you like this project!

License

FOSSA Status

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].