novu

所属分类:hotest
开发工具:TypeScript
文件大小:0KB
下载次数:0
上传日期:2023-06-28 17:20:47
上 传 者sh-1993
说明:  具有全功能嵌入式通知中心的开源通知基础架构
(The open-source notification infrastructure with fully functional embedded notification center)

文件列表:
.commitlintrc.json (485, 2023-12-13)
.cspell.json (10977, 2023-12-13)
.deepsource.toml (387, 2023-12-13)
.devcontainer/ (0, 2023-12-13)
.devcontainer/Dockerfile (1686, 2023-12-13)
.devcontainer/devcontainer.json (1055, 2023-12-13)
.devcontainer/docker-compose.yml (1392, 2023-12-13)
.editorconfig (236, 2023-12-13)
.eslintignore (281, 2023-12-13)
.eslintrc.js (3681, 2023-12-13)
... ...


NPM npm downloads MIT

The open-source notification infrastructure for developers

The ultimate service for managing multi-channel notifications with a single API.


Explore the docs

Report Bug · Request Feature · Join Our Discord · Roadmap · X · Notifications Directory

Available in: Node.js · PHP · Go · Ruby · Kotlin · Elixir · Rust · Python · Java

## Why Novu? Novu provides a unified API that makes it simple to send notifications through multiple channels, including In-App, Push, Email, SMS, and Chat. With Novu, you can create custom workflows and define conditions for each channel, ensuring that your notifications are delivered in the most effective way possible. ## Features - Single API for all messaging providers (In-App, Email, SMS, Push, Chat) - Easily manage notifications over multiple channels - Equipped with a CMS for advanced layouts and design management - Built-in protection for missing variables (Coming Soon) - Easy to set up and integrate - Debug and analyze multi-channel messages in a single dashboard - Embeddable notification center with real-time updates - Community-driven ## Table Of Contents - [Getting Started](https://github.com/novuhq/novu#-getting-started) - [Embeddable notification center](https://github.com/novuhq/novu#embeddable-notification-center) - [Providers](https://github.com/novuhq/novu#providers) - [Email](https://github.com/novuhq/novu#-email) - [SMS](https://github.com/novuhq/novu#-sms) - [Push](https://github.com/novuhq/novu#-push) - [Chat](https://github.com/novuhq/novu#-chat) - [In-App](https://github.com/novuhq/novu#-in-app) - [Others](https://github.com/novuhq/novu#other-coming-soon) - [Need Help?](https://github.com/novuhq/novu#-need-help) - [Links](https://github.com/novuhq/novu#-links) - [License](https://github.com/novuhq/novu#%EF%B8%8F-license) ## Getting Started We are excited to launch the complete Novu API and admin panel. Do you want to give it a test before the official release? Here is how: ``` npx novu init ``` After setting up your account using the cloud or docker version, you can trigger the API using the `@novu/node` package. For API documentation and reference, please visit [Novu API Reference] (https://docs.novu.co/api-reference/events/trigger-event). To get started with the Node.js package, you can install it using npm: ```bash npm install @novu/node ``` ```ts import { Novu } from '@novu/node'; const novu = new Novu(process.env.NOVU_API_KEY); await novu.trigger('', { to: [ { subscriberId: '', email: 'john1@doemail.com', firstName: 'John', lastName: 'Doe', }, ], payload: { name: 'Hello World', organization: { logo: 'https://happycorp.com/logo.png', }, }, }); ``` ## Embeddable Notification Center Using the Novu API and admin panel, you can easily add a real-time notification center to your web app without building it yourself. You can use our [React](https://docs.novu.co/notification-center/client/react/get-started) / [Vue](https://docs.novu.co/notification-center/client/vue) / [Angular](https://docs.novu.co/notification-center/client/angular) components or an [iframe embed](https://docs.novu.co/notification-center/client/iframe), as well as a [Web component](https://docs.novu.co/notification-center/client/web-component).
notification-center-912bb96e009fb3a69bafec23bcde00b0 Read more about how to add a notification center to your app with the Novu API [here](https://docs.novu.co/notification-center/getting-started)

React Component · Vue Component · Angular Component

## Providers Novu provides a single API to manage providers across multiple channels with a simple-to-use interface. #### Email - [x] [Sendgrid](https://github.com/novuhq/novu/tree/main/providers/sendgrid) - [x] [Netcore](https://github.com/novuhq/novu/tree/main/providers/netcore) - [x] [Mailgun](https://github.com/novuhq/novu/tree/main/providers/mailgun) - [x] [SES](https://github.com/novuhq/novu/tree/main/providers/ses) - [x] [Postmark](https://github.com/novuhq/novu/tree/main/providers/postmark) - [x] [Custom SMTP](https://github.com/novuhq/novu/tree/main/providers/nodemailer) - [x] [Mailjet](https://github.com/novuhq/novu/tree/main/providers/mailjet) - [x] [Mandrill](https://github.com/novuhq/novu/tree/main/providers/mandrill) - [x] [SendinBlue](https://github.com/novuhq/novu/tree/main/providers/sendinblue) - [x] [MailerSend](https://github.com/novuhq/novu/tree/main/providers/mailersend) - [x] [Infobip](https://github.com/novuhq/novu/tree/main/providers/infobip) - [x] [Resend](https://github.com/novuhq/novu/tree/main/providers/resend) - [x] [SparkPost](https://github.com/novuhq/novu/tree/main/providers/sparkpost) - [x] [Outlook 365](https://github.com/novuhq/novu/tree/main/providers/outlook365) #### SMS - [x] [Twilio](https://github.com/novuhq/novu/tree/main/providers/twilio) - [x] [Plivo](https://github.com/novuhq/novu/tree/main/providers/plivo) - [x] [SNS](https://github.com/novuhq/novu/tree/main/providers/sns) - [x] [Nexmo - Vonage](https://github.com/novuhq/novu/tree/main/providers/nexmo) - [x] [Sms77](https://github.com/novuhq/novu/tree/main/providers/sms77) - [x] [Telnyx](https://github.com/novuhq/novu/tree/main/providers/telnyx) - [x] [Termii](https://github.com/novuhq/novu/tree/main/providers/termii) - [x] [Gupshup](https://github.com/novuhq/novu/tree/main/providers/gupshup) - [x] [SMS Central](https://github.com/novuhq/novu/tree/main/providers/sms-central) - [x] [Maqsam](https://github.com/novuhq/novu/tree/main/providers/maqsam) - [x] [46elks](https://github.com/novuhq/novu/tree/main/providers/forty-six-elks) - [x] [Clickatell](https://github.com/novuhq/novu/tree/main/providers/clickatell) - [x] [Burst SMS](https://github.com/novuhq/novu/tree/main/providers/burst-sms) - [x] [Firetext](https://github.com/novuhq/novu/tree/main/providers/firetext) - [x] [Infobip](https://github.com/novuhq/novu/tree/main/providers/infobip) - [ ] Bandwidth - [ ] RingCentral #### Push - [x] [FCM](https://github.com/novuhq/novu/tree/main/providers/fcm) - [x] [Expo](https://github.com/novuhq/novu/tree/main/providers/expo) - [x] [APNS](https://github.com/novuhq/novu/tree/main/providers/apns) - [x] [OneSignal](https://github.com/novuhq/novu/tree/main/providers/one-signal) - [x] [Pushpad](https://github.com/novuhq/novu/tree/main/providers/pushpad) - [ ] Pushwoosh #### Chat - [x] [Slack](https://github.com/novuhq/novu/tree/main/providers/slack) - [x] [Discord](https://github.com/novuhq/novu/tree/main/providers/discord) - [x] [MS Teams](https://github.com/novuhq/novu/tree/main/providers/ms-teams) - [x] [Mattermost](https://github.com/novuhq/novu/tree/main/providers/mattermost) #### In-App - [x] [Novu](https://docs.novu.co/notification-center/getting-started) - [ ] MagicBell #### Other (Coming Soon...) - [ ] PagerDuty ## Read Our Code Of Conduct Before you begin coding and collaborating, please read our [Code of Conduct](https://github.com/novuhq/novu/blob/main/CODE_OF_CONDUCT.md) thoroughly to understand the standards (that you are required to adhere to) for community engagement. As part of our open-source community, we hold ourselves and other contributors to a high standard of communication. As a participant and contributor to this project, you agree to abide by our [Code of Conduct](https://github.com/novuhq/novu/blob/main/CODE_OF_CONDUCT.md). ## Need Help? We are more than happy to help you. If you are getting any errors or facing problems while working on this project, join our [Discord server](https://discord.novu.co) and ask for help. We are open to discussing anything related to the project. ## Immediate working space with Gitpod [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/novuhq/novu) ## Links - [Home page](https://novu.co?utm_source=github) - [Contribution Guidelines](https://github.com/novuhq/novu/blob/main/CONTRIBUTING.md) - [Run Novu Locally](https://docs.novu.co/community/run-in-local-machine) ## License Novu is licensed under the MIT License - see the [LICENSE](https://github.com/novuhq/novu/blob/main/LICENSE) file for details. ## Thanks To All Contributors Thanks a lot for spending your time helping Novu grow. Keep rocking Contributors

近期下载者

相关文件


收藏者