All Projects â†’ fonoster â†’ Fonos

fonoster / Fonos

Licence: mit
🚀 The open-source alternative to Twilio

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
shell
77523 projects
Dockerfile
14818 projects
Mustache
554 projects
HTML
75241 projects

Projects that are alternatives of or similar to Fonos

fonoster
🚀 The open-source alternative to Twilio
Stars: ✭ 5,072 (+34%)
Mutual labels:  twilio, telephony, voip, cpaas, programmable-voice, ucaas, cloud-communications-platform
somleng
Open Source Implementation of Twilio's REST API
Stars: ✭ 33 (-99.13%)
Mutual labels:  twilio, telephony, voip, cloud-communications-platform
human-call-filter
Captcha for phone calls
Stars: ✭ 41 (-98.92%)
Mutual labels:  twilio, telephony, voip
Freeswitch
FreeSWITCH is a Software Defined Telecom Stack enabling the digital transformation from proprietary telecom switches to a versatile software implementation that runs on any commodity hardware. From a Raspberry PI to a multi-core server, FreeSWITCH can unlock the telecommunications potential of any device.
Stars: ✭ 1,213 (-67.95%)
Mutual labels:  voip, webrtc, telephony
Baresip
Baresip is a modular SIP User-Agent with audio and video support
Stars: ✭ 817 (-78.41%)
Mutual labels:  voip, webrtc, telephony
Kamailio
Kamailio - The Open Source SIP Server for large VoIP and real-time communication platforms -
Stars: ✭ 1,358 (-64.12%)
Mutual labels:  voip, webrtc, telephony
Routr
Routr: Next-generation SIP Server
Stars: ✭ 788 (-79.18%)
Mutual labels:  twilio, voip, webrtc
Audioswitch
An Android audio management library for real-time communication apps.
Stars: ✭ 69 (-98.18%)
Mutual labels:  twilio, webrtc
Ca11
Multi-Protocol Webphone
Stars: ✭ 69 (-98.18%)
Mutual labels:  webrtc, telephony
Asterisk Cdr Viewer Mod
Simple and fast viewer for Asterisk CDRs and Recordings (Mod)
Stars: ✭ 76 (-97.99%)
Mutual labels:  voip, telephony
Twilio Video App React
A collaboration application built with the twilio-video.js SDK and React.js
Stars: ✭ 1,233 (-67.42%)
Mutual labels:  twilio, webrtc
Sip.js
A simple, intuitive, and powerful JavaScript signaling library
Stars: ✭ 1,282 (-66.13%)
Mutual labels:  voip, webrtc
Pushkit silentpushnotification
PushKit_SilentPushNotification to receive VOIP call while iOS app is in background or terminated state
Stars: ✭ 93 (-97.54%)
Mutual labels:  voip, webrtc
Homer
HOMER - 100% Open-Source SIP / VoIP Packet Capture & Monitoring
Stars: ✭ 855 (-77.41%)
Mutual labels:  voip, webrtc
Webrtc
Pure Go implementation of the WebRTC API
Stars: ✭ 8,399 (+121.9%)
Mutual labels:  voip, webrtc
Pade
Pàdé (Yoruba word for Meet) is a browser extension (Chrome/Edge) based unified communications desktop client for Openfire.
Stars: ✭ 72 (-98.1%)
Mutual labels:  webrtc, telephony
Webrtc
A pure Rust implementation of WebRTC API
Stars: ✭ 922 (-75.64%)
Mutual labels:  voip, webrtc
Ivozprovider
IVOZ Provider - Multitenant solution for VoIP telephony providers
Stars: ✭ 127 (-96.64%)
Mutual labels:  voip, telephony
Stun
A Go implementation of STUN
Stars: ✭ 141 (-96.27%)
Mutual labels:  voip, webrtc
Twilio Csharp
Twilio C#/.NET Helper Library for .NET Framework 3.5+ and supported .NET Core versions
Stars: ✭ 541 (-85.71%)
Mutual labels:  twilio, telephony

build license: MIT Tweet

Flow

💬 Join the conversation 👈

Fonoster Inc researches an innovative Programmable Telecommunications Stack that will allow for an entirely cloud-based utility for businesses to connect telephony services with the Internet.

Fonoster - Engage with your customers with VoIP or SMS | Product Hunt

Features

The most notable features on FN 0.2 are:

  • Cloud initialization with Cloud-Init
  • Multitenancy
  • Easy deployment of PBXs functionalities
  • Programmable Voice Applications
  • NodeJS SDK
  • Web SDK
  • Support for Amazon Simple Storage Service (S3)
  • Secure API endpoints with Let's Encrypt
  • Authentication with OAuth2
  • Authentication with JWT
  • Role-Based Access Control (RBAC)
  • Plugins-based Command-line Tool
  • Support for Google Speech API
  • Experimental support for Cloud Functions
  • Experimental support for Secret management

Code Examples

A Voice Application is a server that takes control of the flow in a call. A Voice Application can use any combination of the following verbs:

  • Answer - Accepts an incoming call
  • Hangup - Closes the call
  • Play - Takes an URL or file and streams the sound back to the calling party
  • Say - Takes a text, synthesizes the text into audio, and streams back the result
  • Gather - Waits for DTMF or speech events and returns back the result
  • SGather - Returns a stream for future DTMF and speech results
  • Dial - Passes the call to an Agent or a Number at the PSTN
  • Record - It records the voice of the calling party and saves the audio on the Storage sub-system
  • Mute - It tells the channel to stop sending media, effectively muting the channel
  • Unmute - It tells the channel to allow media flow

Voice Application Example:

const { VoiceServer } = require("@fonoster/voice");
const voiceServer = new VoiceServer({ base: '/voiceapp' });

voiceServer.listen((req, res) => {
  console.log(req);
  res.play("sound:hello-world");
});

// your app will leave at http://127.0.0.1/voiceapp 
// and you can easily publish it to the Internet with:
// ngrok http 3000

Everything in FN is an API first, and initiating a call is no exception. You can use the SDK to start a call with a few lines of code.

Example of originating a call with the SDK:

const Fonoster = require("@fonoster/sdk");
const callManager = new Fonoster.CallManager();

callManager.call({
 from: "9842753574",
 to: "17853178070",
 webhook: "https://5a2d2ea5d84d.ngrok.io/voiceapp"
})
.then(console.log)
.catch(console.error);

Getting Started

To get started with FN use the following resources:

Bugs and Feedback

For bugs, questions, and discussions, please use the Github Issues

Contributing

For contributing, please see the following links:

We're glad to be supported by respected companies and individuals from several industries. See our Github Sponsors learn more.

Sponsors

Find all supporters in our BACKERS.md file.

Become a Github Sponsor


Special Announcement:

We now have a Slack Channel
There we plan to discuss roadmaps, feature requests and more
Join the channel


Authors

License

Copyright (C) 2021 by Fonoster Inc. MIT License (see LICENSE for details).

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].