Popularity
5.7
Stable
Activity
0.0
Stable
723
86
77

Programming language: JavaScript
Tags: Communication systems     Custom    

Broid alternatives and similar software solutions

Based on the "Custom" category.
Alternatively, view Broid alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Broid or a related project?

Add another 'Custom' Software solution

README

Connect your App to Multiple Messaging Channels in a Single Integration with W3C Open standard.


โญ๏ธ Introduction โญ๏ธ

Broid Integrations is an open source project released by Broid that allows you to easily converse on all the major communication platforms (messaging & voice) without integrating each API.

It provides a suite of libraries to convert all messaging platforms events to Activity Streams 2 schemas.

TL;DR

  • All events are Observables (RxJS)
  • All functions return a Promise (Bluebird)
  • Highly modular to keep your focus on high level features

๐Ÿ’ช Motivation ๐Ÿ’ช

With billions of daily users Messaging๐Ÿ’ฌ is now the prefered channel of communication but there is a clear lack of open standard for the various APIs. Each one come with a specfic schema, docs, etc. We want to empower the community to built great things with messaging so we open-sourced our Premium API so that you can avoid the tedious work of integrating new channels and focus on your core product ๐Ÿ’ก.

๐Ÿ”Ž Quick Example ๐Ÿ”Ž

A quick example showing off listening for new messages on Facebook Messenger and Discord with Observables.

npm i --save @broid/messenger @broid/discord rxjs ramda
const Rx = require("rxjs/Rx");
const BroidDiscord = require("@broid/discord");
const BroidMessenger = require("@broid/messenger");

const clients = {
    discord: new BroidDiscord({token: 'DISCORD_TOKEN'}),
    messenger: new BroidMessenger({token: 'FACEBOOK_TOKEN', tokenSecret: 'FACEBOOK_SECRET'})
};

Rx.Observable.merge(...Object.values(clients).map(client => client.connect()))
    .subscribe({
        next: data => console.log(JSON.stringify(data, null, 2)),
        error: err => console.error(`Something went wrong: ${err.message}`),
    });

Rx.Observable.merge(...Object.values(clients).map(client => client.listen()))
    .subscribe({
        next: message => console.log(JSON.stringify(message, null, 2)),
        error: err => console.error(`Something went wrong: ${err.message}`),
    });

๐Ÿ”Œ Get Started ๐Ÿ”Œ

Here are 2 quick tutorials to get started with broid in under 5 minutes and 30 lines of codes :

  • [Integrate a Dozen Messaging Platforms in 5 Minutes](MEDIUM1-url)
  • [Integrate a Dozen Messaging Platforms in 30 lines of code](MEDIUM2-url)

๐Ÿ“ฑ๐Ÿ”—๐Ÿ“ฑ Integrations ๐Ÿ–ฅ๏ธ๐Ÿ”—๐Ÿ“ฑ

Broid Integrations support simple, media and rich messages (location, carroussel) and split into multiple libraries. This make Broid flexible and useful to use in your application.

Node packages

Name Status
broid-alexa alexa alexa alexa
broid-callr callr callr callr
broid-discord discord discord discord
broid-flowdock flowdock flowdock flowdock
broid-gitter gitter gitter gitter
broid-google-assistant google-assistant google-assistant google-assistant
broid-groupme groupme groupme groupme
broid-irc irc irc irc
broid-kik kik kik kik
broid-line line line line
broid-messenger messenger messenger messenger
broid-ms-teams ms-teams ms-teams ms-teams
broid-nexmo nexmo nexmo nexmo
broid-skype skype skype skype
broid-slack viber slack slack
broid-telegram telegram telegram telegram
broid-twilio twilio twilio twilio
broid-twitter viber twitter twitter
broid-viber viber viber viber
broid-wechat wechat wechat wechat
broid-messagebird
broid-github
broid-webmessenger

Broid Formats

Broid integrations supports Activity Streams 2.0 and uses broid-schemas package to validate input and output message.

Name Status
broid-schemas schemas schemas schemas

โค๏ธ๏ธ Contribute โค๏ธ๏ธ

See [CONTRIBUTE.md](CONTRIBUTE.md).

๐Ÿ‘ฎ CLA ๐Ÿ‘ฎ

To protect the interests of the Broid contributors, Broid, customers and end users we require contributors to sign a Contributors License Agreement (CLA) before we pull the changes into the main repository. Our CLA is simple and straightforward - it requires that the contributions you make to any Broid open source project are properly licensed and that you have the legal authority to make those changes. This helps us significantly reduce future legal risk for everyone involved. It's easy---no faxing or printing required!

You can digitally sign the CLA online. Please indicate your email address in your first pull request so that we can make sure that will locate your CLA. Once you've submitted it, you no longer need to send one for subsequent submissions.

๐Ÿ“ฃ Support Broid ๐Ÿ“ฃ

In order to continue providing the community with our open source work, we offer a Public API. Paying users get additionnal features and early access to new integrations:

  • Premium Integrations
    • Message Bird
    • Web Messenger (live chat for website and mobile apps with FB Messenger like features)
    • Github
    • ++ more ++
  • Unlimited Messages & users
  • Secure encryption & Failover system
  • Access to Admin Dashboard
  • Priviledged Technical Support

Only $9.99 per month per active integration

Thanks

Project cross-browser compatibility supported by BrowserStack


*Note that all licence references and agreements mentioned in the Broid README section above are relevant to that project's source code only.